Page 1 of 1
[Solved] Orders Module - FEU Billing Empty
Posted: Sun Mar 06, 2011 7:24 pm
by hgmd2005
I have registered Users, but when I go to Check out the Billing Form is not filled with the users information. What am I doing wrong. I have the preferences mapped to the FEU fields, but nothing is being displayed.
I even print all the Variables on the page, but I don't see the FrontEndUser information I do see a few CustomContent entries but that is it.
Please help I have been trying to get this to work for about 2 weeks. I have dug in the PHP module for clues as to why it is not working.
Re: Orders Module - FEU Billing Empty
Posted: Mon Mar 07, 2011 11:22 am
by maranc
Try remove all user properties in FEU and create it once again. I have the same problem, that help for me.
Best regards,
Marek A.
Re: [Solved] Orders Module - FEU Billing Empty
Posted: Mon Mar 07, 2011 3:11 pm
by hgmd2005
I got it working. I moved some hard coded tags from the template into the "Content" field of the page. Everything is working now. I didn't even map the FEU fields in the Order Preferences. The Billing and Shipping form is filling in with all the FEU information.
This is the info I moved just for reference.
Code: Select all
{if $ccuser->loggedin()}{Orders}{else}
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="50%" style="padding:0 10px 10px 0"><div class="white-box-border-blue">
<span class="important-title-blue">Existing Customers</span>
{cms_module module=FrontEndUsers nocaptcha="1"}
</div></td>
<td width="50%" rowspan="2" style="padding:0 0 10px 10px"><div class="white-box-border-blue">
<span class="important-title-blue">Log In Help</span>
<span class="pagetext">If you are having problems logging in, try the following:<br /><br />
1. Enable Cookies.<br />
2. Enable Javascript.<br />
3. Refresh the page.<br /><br />
If you are still experiencing problems, try using this link to reset your cookies and reload the page automatically.</span>
</div></td>
</tr>
<tr>
<td width="50%" style="padding:0 10px 10px 0"><div class="white-box-border-blue">
<span class="important-title-blue">New Customer Sign-Up</span>
<span class="pagetext">Create a NewBeginningsBaby.com account today to reap the benefits of a personalized shopping experience. With a NewBeginningsBaby.com account, you'll be able to conveniently place orders, check the status of your recent orders and much more.<br /><br />
<table width="198" border="0" cellspacing="0" cellpadding="0" height="29">
<tr>
<td width="198" height="29" align="center" class="button" style="background:url(images/newbegbaby/layout/loginbtn.jpg) no-repeat">Create New Account</td>
</tr>
</table>
</span>
</div></td>
</tr>
</table>
{/if}