lateral Posted September 3, 2014 Share Posted September 3, 2014 Hi guys I don't want to display the Product's "Data Sheet" on the Front End and can't figure how to disable it.... Link to comment Share on other sites More sharing options...
NemoPS Posted September 3, 2014 Share Posted September 3, 2014 You must edit product.tpl for that, and get rid of {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} Link to comment Share on other sites More sharing options...
Recommended Posts