View Single Post
  #7  
Old 01-17-2009, 07:21 AM
  ARW VISIONS's Avatar 
ARW VISIONS ARW VISIONS is offline
 

X-Man
  
Join Date: Jan 2007
Location: Pensacola, FL
Posts: 2,536
 

Default Re: Product.tpl code question

Try this...

replace
{include file="PriceMatch.tpl"}{if $product.free_shipping eq "Y"} {include file="freeshipping.tpl"}

with this...

<table cellpadding="0" cellspacing="0">
<tr>
<td>
{include file="PriceMatch.tpl"}
</td>
<td>
{if $product.free_shipping eq "Y"} {include file="freeshipping.tpl"}{/if}
</td>
</tr>
</table>
__________________
xcart 5.1.2
Reply With Quote