Thanks for the help everyone - this may be a problem that can be addressed at the CartThrob forums (agreed that Chris and Rob are great) but I want to hedge my bets since I am using some native EE functionality, if there are any tips I would greatly appreciate it.
Here is my issue as of now, I can get the fields to properly display the information gathered in the save_customer_info form and get it it print in the following area (which is where the user has the ability to create an account):
<label for="create_user" id="new-user-label"><strong>Check this box to create a user account:</strong></label>
<input type="checkbox" id="new-user-checkbox" name="create_user" value="yes" />
<label for="username">Username *</label>
<input type="text" name="username" value="" />
<label for="email">Email *</label>
<input type="text" name="email" value="{customer_email_address}" />
<label for="account-password">Password *</label>
<input type="password" name="password" value="" />
<label for="password_confirm">Re-Password *</label>
<input type="password" name="password_confirm" value="" />
<label for="m_field_id_1" class="visuallyhidden">First Name</label>
<input type="hidden" name='m_field_id_1' id='m_field_id_1' value="{customer_first_name}" />
However it doesn’t save this data to the custom member fields in the admin after the user is created.
Any ideas on why that might not be happening?
Thanks!
Nathan