Quote:
Originally Posted by swifty1
I have the special offer mod from x-cart which puts a small img (special offer tag) on each product image, if the customer places their cursor on the special offer img and clicks they are taking to a special offer page, this is confusing some customers so i need to disable this link function.
Does anybody know where this link code is?
|
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>