Quote:
Originally Posted by donavichi
In skin1/modules/Special_Offers/customer/product_offer_thumb.tpl - find:
Code:
<div class="SpecialOffersThumb">
<a href="offers.php?mode=product&productid={$product.productid}"><img src="{$ImagesDir}/offer_thumb.gif" alt="" /></a>
</div>
replace with:
Code:
<div class="SpecialOffersThumb">
<img src="{$ImagesDir}/offer_thumb.gif" alt="" />
</div>
|
In X-Cart 4.6.3 the replacement is code in /common_files/modules/Special_Offers/customer/product_offer_thumb.tpl is (original code is preserved and quoted out)
Quote:
{if $product.have_offers and $config.Special_Offers.offers_show_thumb_on_lists eq "Y"}
{* <a href="offers.php?mode=product&productid={$prod uct.productid}" class="offers-thumbnail"><img src="{$ImagesDir}/spacer.gif" alt="" /></a> *}
{* Start Added *}
<a href="{$url}" class="offers-thumbnail"><img src="{$ImagesDir}/spacer.gif" alt="" /></a>
{* End Added *}
{/if}
|