View Single Post
  #2  
Old 11-28-2008, 12:19 AM
  Yurij's Avatar 
Yurij Yurij is offline
Banned
 

X-Adept
  
Join Date: Jan 2008
Posts: 486
 

Default Re: Starburst image in short description

Quote:
Originally Posted by Isleman
When a product has a discount it usually shows the list price and the discount price but also it displays a starburst image on the product page which contains the discount in percentages.
How can I make this star to appear on the short description in category view ?
Thank you.


Try use next code (for file "skin1/customer/main/products.tpl" or ".../products_t.tpl"):

PHP Code:
<table width="60" cellspacing="1" cellpadding="2">
<
tr>
    <
td class="SaveMoneyLabel">
<
br />
{
math equation="100-(price/lprice)*100" price=$products[product].taxed_price lprice=$products[product].list_price format="%3.0f" assign=discount}
&
nbsp;<span id="save_percent">{ $discount }</span>%
    </
td>
</
tr>
</
table
Reply With Quote