Jon, do you know how i would go about this.
in my register.tpl i already have a message for those who have not logged in yet for example
Already registered??
Quote:
please enter your username and password in the boxes below and your details will be retrieved
|
Now that works fine on the normal customer registration (i have the customer login and customer registration on the same page in two different tables) , but when it comes to the checkout login/regitration the texts are basically doubled up as there is text at the top which basically says the same thing
how do I hide MY text if the customer is on the checkout pages
i thought this
Code:
{if $main ne "cart"}<tr>
<td align="center"><h1>{$lng.lbl_already_registered}</h1></td>
</tr>
<tr>
<td>{$lng.txt_already_registered}</td>
</tr>{/if}
and also changed "cart" to "checkout" to see if that worked but not luck
Any ideas?