brusuelas wrote:I've added street address fields to the registration form but see that they aren't coming over in the notification email.
Any way for me to get those into the admin's notification email?
Thanks in advance for your help!
Yes there is.
Search for language string that is used to formulate this message and add relevant field names to it.
You should not really modify this directly in the default language file. Instead you should download the English language plugin and make changes it it and then install it.
forge.joomlapolis.com/projects/lan-cb-en/files
Download the CB13 english plugin and unzip it.
The string(s) you need to edit is in the english.php file:
[code:1]DEFINE ('_UE_REG_ADMIN_PA_SUB','ACTION REQUIRED! New User Registration Pending Approval');
DEFINE ('_UE_REG_ADMIN_PA_MSG','A new user has registered at [SITEURL] and requires approval.\n'
.'This email contains their details\n\n'
.'Name - [NAME]\n'
.'E-mail - [EMAILADDRESS]\n'
.'Username - [USERNAME]\n\n\n'
.'Please do not respond to this message as it is automatically generated and is for informational purposes only.\n');
DEFINE ('_UE_REG_ADMIN_SUB','New User Registration');
DEFINE ('_UE_REG_ADMIN_MSG','A new user has registered at [SITEURL].\n'
.'This email contains their details\n\n'
.'Name - [NAME]\n'
.'E-mail - [EMAILADDRESS]\n'
.'Username - [USERNAME]\n\n\n'
.'Please do not respond to this message as it is automatically generated and is for information purposes only\n');
DEFINE('_UE_REG_EMAIL_TAGS','[NAME] - Name of the User<br />'
.'[USERNAME] - Username of the User<br />'
.'[DETAILS] - Account Details of the User such as Email Address and Username<br />'
.'[PASSWORD] - Password choosen by the User (only at the first email sent upon pressing "Register"«»)<br />'
.'[CONFIRM] - Inserts confirmation link if the confirmation functionality is enabled<br />'
.'[FIELDNAME] - This will insert the value relative to the user who the email is addressed to. Just include the database field name of the field you want to include between [].<br />'
);
[/code:1]
Just add your own field names her (example [cb_street], etc).
You can benefit from becoming a CB Documentation subscriber as it will help you take full advantage of CB and it will help keep CB free.