Quote:
Originally Posted by mmoskva
I am trying to create a text button link that will direct the user to another page.
I try entering this code into my head.tpl below the customer/top_menu.tpl tag but I keep gettin a smarty error and nothing loads. Don't understand?
code:
<TD valign="top" align="right">
{if $usertype eq "C"}
{include file="customer/top_menu.tpl"}
{/if}
{ {$lng.lbl_Login}}
</TD>
Thanks for the help.
|
Here is the correct code..
Code:
<TD valign="top" align="right">
{if $usertype eq "C"}
{include file="customer/top_menu.tpl"}
{/if}
{$lng.lbl_Login}
</TD>
Balinor is right and he suggested to remove only the braces. He did't suggest to replace the complete code with he has provided.