Doopz Posted April 17, 2020 Share Posted April 17, 2020 Hey there, here's hoping I can get some direction. I'd like to move the Data Sheet where the Short Description would be. I have read and tried each solution I found - none have worked. Has anyone had luck with this or know how to do this? Also, I don't know why there is a white "block" on the page as well - I assume that it should be displaying features - but it isn't. (Photo attached) Any help would be appreciated. Link to comment Share on other sites More sharing options...
NemoPS Posted April 17, 2020 Share Posted April 17, 2020 You need to edit product.tpl. Once you open it, scroll down to the //features comment {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} basically cut that and paste it wherever you need it Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now