In the e-mail message body, how to change the the sort when using the %s that always shows 1st the site name, username and link?
- Date added:
- Saturday, 30 May 2009
- Last revised:
- Sunday, 07 June 2009
Answer
It is defined in the controler.php file at yoursite/com_alpharecommend. If you check the line 171 you will find the order it is defined at: $body = sprintf( $msg, $SiteName, $sender, $link) . " \n" . $custommessage; So, you if you want to show for example the sender 1st, the site name and the link, just chage the sequence for it:
$msg, $sender, $SiteName, $link
$msg, $sender, $SiteName, $link




