This question may be related to a resolved thread.
The previous thread was “resolved” so I could not post in there. But I had the same issue with my site. I was able to hack in a simple solution, however.
In mod.member_register.php in the register_member method towards the bottom after the $swap array is created, I added the following code:
if ( isset($_POST) AND is_array($_POST) )
{
foreach ($_POST as $key => $value)
{
if ( stripos($key, 'm_field_id') === 0 )
{
$swap[$key] = $value;
}
}
}This allows me to do something like this in my email notification template (Design › Message Pages › Email Notifications › Admin Notification of New Member Registration):
First Name: {m_field_id_5}
Last Name: {m_field_id_6}I’m sure this solution could be improved to use better template variables, but it will work for the time being. I hope this helps someone else.