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.

Take the chance to buy
Shop-Script 5 at the low price
Save $30 only until May 31!
Your last chance!
8 days left

You are not logged in.

#1 2012-03-03 00:11

how do i remove shopping cart

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

 

#2 2012-03-05 01:33

rat
Administrator

Re: how do i remove shopping cart

In file templates/tmpl1/index.tpl.html change

Code:

<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

Code:

<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>

Be careful what you wish for — you might get it.

Offline

 

Board footer

Powered by PunBB