shetab24 Posted January 24, 2017 Share Posted January 24, 2017 hi friends how can i delete the "more info" tab in prestashop 1.6.1 ? l know i should do some modifications but do not know which files and which lines? Link to comment Share on other sites More sharing options...
JeredBolton Posted January 24, 2017 Share Posted January 24, 2017 If you want to do this per product just delete the contents of the Description box in the Information tab when editing a product. If you want to remove this information from all products then you'll need to delete the following lines from the product.tpl file in your theme's directory: {if isset($product) && $product->description} <!-- More info --> <section class="page-product-box"> <h3 class="page-product-heading">{l s='More info'}</h3> <!-- full description --> <div class="rte">{$product->description}</div> </section> <!--end More info --> {/if} If you delete these lines, be sure to delete the smarty cache etc... Link to comment Share on other sites More sharing options...
shetab24 Posted January 25, 2017 Author Share Posted January 25, 2017 (edited) hi actually i have some description and i need the Description box in all my pages. i just wanna to cut that box or tab, above the frame as marked in the picture the area surrounded in red color. what should i do so? Edited January 25, 2017 by shetab24 (see edit history) Link to comment Share on other sites More sharing options...
JeredBolton Posted January 25, 2017 Share Posted January 25, 2017 In that case just delete the single line: <h3 class="page-product-heading">{l s='More info'}</h3> 1 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