frankypiccolo Posted June 13, 2015 Share Posted June 13, 2015 Hi! I would like the data sheet (on the product page) to be under the "more information" tab, not above. I tried 'live editing' modules, but those tabs seem to be fixed in place. Any suggestions? Link to comment Share on other sites More sharing options...
Paulito Posted June 13, 2015 Share Posted June 13, 2015 Hello I suppose the easiest way is to go to product.tpl and move that section below the more info section, I have just tried it Before http://screencast.com/t/spIQC8sRS6 After http://screencast.com/t/wJdgLa04lP You will find this code around Line 471 (assuming you are using default theme) the More Info section is directly below this <!-- 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 --> Paul Link to comment Share on other sites More sharing options...
frankypiccolo Posted June 13, 2015 Author Share Posted June 13, 2015 Thanks Paulito! Worked great :-) Link to comment Share on other sites More sharing options...
justtigs Posted June 19, 2015 Share Posted June 19, 2015 While this wasn't exactly the issue I was having your instructions helped me find where to change it from "Data Sheet" to "Product Details" on my site. Thanks! 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