Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls
 

Display "Percent Saved" condition

 
Reply
   X-Cart forums > X-Cart 4 > Dev Questions > Changing design
 
Thread Tools Search this Thread
  #1  
Old 04-27-2005, 08:42 AM
 
golfguy golfguy is offline
 

Senior Member
  
Join Date: Apr 2005
Location: Omaha,NE
Posts: 108
 

Default Display "Percent Saved" condition

Could someone point me to where it's determined whether or not to display "%n Saved"

I don't want to display % saved if the value is less than 10% (I think telling someone they saved 2% is silly)

I'm sure there is a check somewhere for "less than 1" because if Price = List Price the %n Saved does not display.
__________________
Version 4.2.3
Reply With Quote
  #2  
Old 04-27-2005, 06:35 PM
 
Bella Forma Bella Forma is offline
 

Senior Member
  
Join Date: Nov 2004
Location: Australia
Posts: 150
 

Default

Find this code in your skin1/customer/main/product.tpl file

Code:
{if $product.list_price gt 0 and $product.taxed_price lt $product.list_price} <TABLE border="0" width="45"> <TR> <TD width="45" height="45" class="SaveMoneyLabel" background="{$ImagesDir}/save_money.gif" align="center" valign="middle"> {math equation="100-(price/lprice)*100" price=$product.taxed_price lprice=$product.list_price format="%d" assign=discount} <SPAN id="save_percent">{ $discount }</SPAN>% </TD></TR></TABLE>{/if}

And replace it with this:

Code:
{if $product.list_price gt 0 and $product.taxed_price lt $product.list_price} {math equation="100-(price/lprice)*100" price=$product.taxed_price lprice=$product.list_price format="%d" assign=discount} {if $discount >= 10} <TABLE border="0" width="45"> <TR> <TD width="45" height="45" class="SaveMoneyLabel" background="{$ImagesDir}/save_money.gif" align="center" valign="middle"> <SPAN id="save_percent">{ $discount }</SPAN>%</TD> </TR> </TABLE> {/if} {/if}

This works for Version 4.0.12
__________________
X-Cart Gold 4.0.12
X-AOM, X-RMA, X-FancyCat
Apache/Linux Server
PHP 4.3.8
Reply With Quote
  #3  
Old 04-27-2005, 07:03 PM
 
golfguy golfguy is offline
 

Senior Member
  
Join Date: Apr 2005
Location: Omaha,NE
Posts: 108
 

Default

Hey thanks! It works like a charm!
__________________
Version 4.2.3
Reply With Quote
  #4  
Old 06-19-2005, 11:56 PM
 
Dorette Dorette is offline
 

Advanced Member
  
Join Date: Jun 2005
Posts: 71
 

Default

where in the admin can I ask it to calculate percentage savings or not.
i want to disable the percentage savings
Reply With Quote
Reply
   X-Cart forums > X-Cart 4 > Dev Questions > Changing design



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 06:49 PM.

   

 
X-Cart forums © 2001-2020