X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Special offer mod (https://forum.x-cart.com/showthread.php?t=50352)

swifty1 10-24-2009 10:20 AM

Special offer mod
 
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?

donavichi 10-27-2009 02:24 AM

Re: Special offer mod
 
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&amp;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>


Ben G 06-25-2014 06:35 PM

Re: Special offer mod
 
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&amp;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&amp;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}


All times are GMT -8. The time now is 01:23 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.