nexgenappliances Posted May 14, 2014 Share Posted May 14, 2014 I have no idea why features belong above the product description, but I would like to move them to below the product description where they belong. Any help would be appreciated. Link to comment Share on other sites More sharing options...
dioniz Posted May 14, 2014 Share Posted May 14, 2014 If you have 1.6 open product.tpl and move this code: {if isset($features) && $features} <!-- Data sheet --> <section class="page-product-box"> <h3 class="page-product-heading">{l s='Data sheet'}</h3> <table class="table-data-sheet"> {foreach from=$features item=feature} <tr class="{cycle values="odd,even"}"> {if isset($feature.value)} <td>{$feature.name|escape:'html':'UTF-8'}</td> <td>{$feature.value|escape:'html':'UTF-8'}</td> {/if} </tr> {/foreach} </table> </section> <!--end Data sheet --> {/if} below this code {if $product->description} <!-- More info --> <section class="page-product-box"> <h3 class="page-product-heading">{l s='More info'}</h3>{/if} {if isset($product) && $product->description} <!-- full description --> <div class="rte">{$product->description}</div> </section> <!--end More info --> {/if} 3 Link to comment Share on other sites More sharing options...
nexgenappliances Posted May 14, 2014 Author Share Posted May 14, 2014 Crushed it! Thank you so much for your help!!! Link to comment Share on other sites More sharing options...
dioniz Posted May 15, 2014 Share Posted May 15, 2014 You are welcome Link to comment Share on other sites More sharing options...
franzneves Posted May 21, 2014 Share Posted May 21, 2014 In which subfolder I find this file? Link to comment Share on other sites More sharing options...
vekia Posted May 21, 2014 Share Posted May 21, 2014 product.tpl is a file located in your theme directory: /themes/YOUR_THEME/product.tpl 1 Link to comment Share on other sites More sharing options...
franzneves Posted May 22, 2014 Share Posted May 22, 2014 Thanks!!!! Link to comment Share on other sites More sharing options...
Recommended Posts