How to place the Customized message above the default message instead of below it?
- Date added:
- Saturday, 06 June 2009
- Last revised:
- Sunday, 07 June 2009
Answer
It is defined in the controller.php file at yoursite/components/com_alphauserpoints. If you check the line 511 (version 1.4.0) you will find the order it is defined at: $body = sprintf( $msg, $SiteName, $sender, $link) . " \n" . $custommessage; So, you can change it for example below:
$body = $custommessage . " \n\n" . sprintf( $msg, $sender, $SiteName, $link) ;
$body = $custommessage . " \n\n" . sprintf( $msg, $sender, $SiteName, $link) ;




