Re: Remove BONUS, SAVE, and Product Picture cells/columns from Item Description
For those who wanted to know how to remove the bonus and save fields, it's in the file below:
common_files/customer/main/product_details.tpl
REMOVE THE TEXT BELOW.
{if $active_modules.Special_Offers}
{include file="modules/Special_Offers/customer/product_bp_icon.tpl"}
{/if}
{if $product.appearance.has_market_price and $product.appearance.market_price_discount gt 0}
<td align="right" valign="top">
<div class="save-percent-container">
<div class="save" id="save_percent_box">
<span id="save_percent">{$product.appearance.market_pric e_discount}</span>%
</div>
</div>
</td>
{/if}
|