View Single Post
  #1  
Old 05-05-2004, 05:28 PM
  daddyroy's Avatar 
daddyroy daddyroy is offline
 

Member
  
Join Date: Apr 2004
Location: Tallahassee, FL
Posts: 19
 

Default CHANGING % SAVED TO $ AMOUNT

I wanted the discounts to show as amount in $'s saved and not percent so I modified the "skin1/customer/main/product.tpl":

#ORIGINAL#

Code:
{math equation="100-(price/lprice)*100" price=$product.price lprice=$product.list_price format="%d" assign=discount} { $discount }%



#MODIFIED#

Code:
{math equation="lprice-price" price=$product.price lprice=$product.list_price format="%d" assign=discount} ${ $discount }

Now it shows "Save $15" as opposed to "Save 60%". Thats it!! Hope this helps someone.
Reply With Quote