I have altered my speedbar as described in :
http://forum.x-cart.com/viewtopic.php?t=13761&highlight=speed+bar
Basically cut and pasted the code, creating the document speed_menu.tpl and it worked! BUT now I get a error message:
Warning: Smarty error: unable to read resource: "customer/speed_menu.tpl" in /www/clientweb/au/p/paulswarehouse.com.au/shop/Smarty-2.6.3/Smarty.class.php on line 1082
Can anyone help me
The code In speed_menu.tpl looks like
Code:
{if $printable ne ''}
{include file="customer/top_menu_printable.tpl"}
{else}
<TABLE border="0" cellpadding="0" cellspacing="0">
{if $speed_bar}
<TR>
<td height="22" valign="middle" class="TabBar">|</td>
{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`\"><font class=TabFont>`$speed_bar[sb].title`</font></A>"}</TD>
{/if}
{/section}
</TR>
{/if}
</TABLE>
{/if}
I have checked file permissions and the code syntax and it seems fine.