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
|