View Single Post
  #5  
Old 09-13-2006, 11:52 AM
 
inebriate inebriate is offline
 

eXpert
  
Join Date: May 2006
Posts: 301
 

Default Re: product option relocating

havent tested this out yet, but you can try...

in skin1/modules/Product_Options/display_options.tpl

find:
Code:
{foreach from=$options item=v} <TR> <TD>{$v.class}:&nbsp;</TD> <TD>{$v.option_name}</TD> </TR> {/foreach}
change to:
Code:
<tr> {foreach name=optloop from=$options item=v} <TD>{$v.class}:&nbsp;</TD> <TD>{$v.option_name}</TD> {if $smarty.foreach.optloop.iteration is div by 3} </tr> <tr> {/if} {/foreach} </tr>
__________________
x-cart pro 4.0.18
linux
www.fabric8d.com (currently undergoing construction)
Reply With Quote