Anyway... here is the problem. On the shopping cart page (the actual cart) we have something like this:
- Code: Select all
[-- IF SignedIn? --]
<!-- USER IS IN -->
Welcome back [-- RegisteredName --]! For account settings...........
[-- ELSE --]
[-- IF SC_Registration --]
[-- IF SC_Must_Register --]
You Must Register to Order!
[-- ELSE --]
Registration on but not reqired for checkout
[--END_IF--]
[-- ELSE --]
# Do nothing (Reg is not on or required.)
[--END_IF--]
[--END_IF--]
Problem is we get "Welcome back ! For account settings...." No name prints out. Registration is on. The name is there. I can call the name on the CR pages using [--CR_Customer_Name --]. It just won't load into the cart.
I have also called [-- RegisteredName --] outside the IF blocks and still nothing despite being logged in.
Ideas?