I needed to be able to see a users information when the register for the job board. This goes for Job seekers and employers. The default only give you the user name and email. That wasn't enough because the client needed to know all the registration info without logging into the system to provide better customer service.
So here was my quick fix for it…
First find these three files:
1) /system/lib/miscellaneous/AdminNotifications. php
2) /templates/_system/email_templates/admin_user_registration_email. tpl
3) /system/user-scripts/users/registration. php
Now open the file you found earlier, /system/lib/miscellaneous/AdminNotifications. php
Look for the function named "sendAdminUserRegistrationLetter" and replace it with the code below:
function sendAdminUserRegistrationLetter($user_id,$otherInfo="") {
$admin_email = Settings::getSettingByName('notification_email');
$system_tpl = System::getSystemSettings('SYSTEM_TEMPLATE_DIR');
$userInfo = UserManager::getUserInfoBySID($user_id);
$email = new Email($admin_email, '. . ...
(
Read full news article)