Not for official support
We do not provide technical support in this forum.
If you want to contact our customer support, please use our support form.
You are not logged in.
hello everyone I am using shop script free I need to remove my shopping basket from my website. can someone please help me??
thanks
curtis cakes
Offline
In file templates/tmpl1/index.tpl.html change
<tr>
<td align="left" valign="top" bgcolor="#602035" class="topcorners">
<div style="padding:5px;font-size:130%;">
<a href="index.php?shopping_cart=yes" class="menu">{$smarty.const.CART_TITLE}</a>
</div>
</td>
</tr>
<tr>
<td style="background: #E5B4C3; background-position: right; padding: 10px;" class="bottomcorners">
{include file="shopping_cart_info.tpl.html"}
</td>
</tr>to
<tr style="display: none;">
<td align="left" valign="top" bgcolor="#602035" class="topcorners">
<div style="padding:5px;font-size:130%;">
<a href="index.php?shopping_cart=yes" class="menu">{$smarty.const.CART_TITLE}</a>
</div>
</td>
</tr>
<tr style="display: none;">
<td style="background: #E5B4C3; background-position: right; padding: 10px;" class="bottomcorners">
{include file="shopping_cart_info.tpl.html"}
</td>
</tr>Offline