View Single Post
  #2  
Old 04-28-2008, 07:25 PM
 
markwhoo markwhoo is offline
 

X-Adept
  
Join Date: Nov 2003
Posts: 799
 

Default Re: Highlight Product Quantity on Invoice

If you really want to make a change to allow customers to see plain invoice while keeping your highlighted values over one, just tweak your code to this:

Code:
<td align="center"> {if $usertype eq "P" or $usertype eq "A"} {if $product.amount eq 1} {$product.amount} {else} <FONT style="BACKGROUND-COLOR: yellow">&nbsp {$product.amount} &nbsp</FONT> {/if} {else} {$product.amount}{/if} </td>

Just food for thought if interested...
__________________
vs 4.1.12
Reply With Quote