Hi
In the language file of User validation email there is three %s item that the first and third are the name of site and the second is user validation link:
//
Please confirm your email address by clicking on the link below:
%s ---->the name of site
If you can't click on the link, copy and paste it to your browser manually.
%s -----> the link
%s ------>the name of site//
I want to change the order of them and have the link and at last the name of site like this:
//
Please confirm your email address by clicking on the link below:
%s----> the link
If you can't click on the link, copy and paste it to your browser manually.%s----> the the name of site
//
How can I do this?
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by RaĆ¼l Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- iionly@iionly
iionly - 0 likes
You must log in to post replies.The code that sends the validation email is in the file uservalidationbyemail/lib/functions.php. The line
creates the email body.
If you want to change the order of the arguments or don't want to use any of them you would to have modify the array entries accordingly.