I am trying to create a new sign-up page for our email newsletter.
I am trying to get the default billing name and email address to show up, but haven't had much luck. I assigned the customer item to the page.
Here is what I have tried so far.
Do I not have the right variables? or what am I missing?
I am trying to get the default billing name and email address to show up, but haven't had much luck. I assigned the customer item to the page.
Here is what I have tried so far.
Code:
<div align="left">First Name:<input name="_fname" type="text" size="30" maxlength="100" value="&mvte:global:BillFirstName;" /></div> <div align="left">Last Name:</b><input name="_lname" type="text" size="30" maxlength="100" value="&mvte:global:BillLastName;" /></div> <div align="left">Email Address:<input name="_email" type="text" size="30" maxlength="100" value="&mvte:global:BillEmail;" /></div> <div align="left">Retype Email Address:<input name="v_email" type="text" size="30" maxlength="100" value="&mvte:global:BillEmail;" />
Comment