fetvvio Posted December 2, 2015 Share Posted December 2, 2015 (edited) Hello, On the bottom of the product page I have the product features which are not visible until you push the data sheet button. I want the information to be displayed on the product page without to push any data sheet button. Can you please tell me how to do that? Thank you very much! Edited December 3, 2015 by fetvvio (see edit history) Link to comment Share on other sites More sharing options...
aytunc Posted October 28, 2017 Share Posted October 28, 2017 On 02.12.2015 at 0:44 AM, fetvvio said: Hello, On the bottom of the product page I have the product features which are not visible until you push the data sheet button. I want the information to be displayed on the product page without to push any data sheet button. Can you please tell me how to do that? Thank you very much! Dear Mate you have to edit product tpl file in your theme files. go to : website.com/themes/yourtheme/product.tpl And find this code below Quote {if isset($USE_PTABS) && $USE_PTABS} {include file="$tpl_dir./sub/product_info/tab.tpl"} {else} {include file="$tpl_dir./sub/product_info/default.tpl"} {/if} Change it with this Quote {if isset($USE_PTABS) && $USE_PTABS} <div class="clearfix more_info_block col-lg-12 col-md-12 col-xs-12">{include file="$tpl_dir./sub/product_info/tab.tpl"}</div> {else} <div class="clearfix more_info_default col-lg-12 col-md-12 col-xs-12">{include file="$tpl_dir./sub/product_info/default.tpl"}</div> {/if} I am using prestashop 1.6.1 it worked for me. You can see at www.kervannargile.com Hope it will help some one 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