Jump to content

How To Keep The Data Sheet Tab Always Open In To The Product Page?


fetvvio

Recommended Posts

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?

 

post-1150418-0-01518000-1449092636_thumb.jpg

post-1150418-0-76729600-1449092636_thumb.jpg

 

Thank you very much! 

Edited by fetvvio (see edit history)
Link to comment
Share on other sites

  • 1 year later...
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?

 

post-1150418-0-01518000-1449092636_thumb.jpg

post-1150418-0-76729600-1449092636_thumb.jpg

 

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...