How to place the Customized message above the default message instead of below it?
- Date added:
- Saturday, 30 May 2009
- Last revised:
- Sunday, 07 June 2009
Answer
It is defined in the controllet.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 can change it for example to:
$body = $custommessage . " \n\n" . sprintf( $msg, $sender, $SiteName, $link) ;
$body = $custommessage . " \n\n" . sprintf( $msg, $sender, $SiteName, $link) ;




