Calling all the X-Cart experts!!! I have been trying to modify top_menu.tpl so that the speed bar displays and next to it a changing login/out link appears
Can someone please tell me what is wrong with the below code. I've been trying to get a link on my logout tab for hours and I think I may cry if I don't solve it. The logout title displays fine but the link does not work?
You would make a very frustrated person very happy if you can help me!
Quote:
{if $printable ne ''}
{include file="customer/top_menu_printable.tpl"}
{else}
<table cellpadding="0" cellspacing="0" width="100%">
{if $speed_bar}
<tr>
<td align="right">
<table cellpadding="0" cellspacing="0">
<tr>
{section name=sb loop=$speed_bar}
{if $speed_bar[sb].active eq "Y"}
<td>{include file="customer/tab.tpl" tab_title="<a href=\"`$speed_bar[sb].link`\">`$speed_bar[sb].title`</a>"}</td>
{/if}
{/section}
{if $login ne ""}
<td>{include file="customer/tab.tpl" tab_title="<a href="include/login.php?mode=logout">$lng.lbl_log_out</a>"}</td>
{else}
<td valign="top"><a href="help.php?section=login" class="Tab">{$lng.lbl_log_in}</a></td>{/if}
{*<td valign="center" width="50">{include file="customer/top_menu_mod.tpl}</td>*}
</tr>
</table>
</td>
</tr>
{/if}
<tr>
<td height="35" align="center" class="HeadText">
{if $config.Company.company_phone}{$lng.lbl_phone_1_ti tle}: {$config.Company.company_phone}{/if}{if $config.Company.company_phone_2} {$lng.lbl_phone_2_title}: {$config.Company.company_phone_2}{/if} </td>
</tr>
</table>
{/if}
|