Jump to content

[SOLVED]reposition full description on product page.


sickshot

Recommended Posts

D2D,

Do I understand correctly you want to move your FEATURES outside the tab, or are you indeed talking about a (full) description of your product? Images suggest features...

 

Please enlighten us,

pascal

 

hello pascal.

 

no, its full description actually. its just written in the manner of features. so i want to move full description next to product image.

 

heres actual link: http://chubika.com/en/home/27-basket-skirt.html

 

also remove tabs names: more info and reviews as shown on image  

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

OK, depending on your theme, yu should add the following code somewhere:

 

{if $product->description}
    <div class= "product_description_moved">
        {$product->description}
    </div>
{/if}
 
 
Your theme is not standard 1.6.0.9, so a little hard to explain.
 
 
First edit file:
    themes/<your theme folder>/product.tpl    (Make backup!!)
 
Then probably best to find some code similar to this: search for end primary_block . You will hopefully see something like this:
 
 
                </div> <!-- end box-info-product -->
            </form>
        {/if}
    </div> <!-- end pb-right-column-->
</div> <!-- end primary_block -->
 
If you see the </form>, that's good.
 
 
Then change into something like this (add red code):
 
                </div> <!-- end box-info-product -->
            </form>
        {/if}
        {if $product->description}
            <div class= "product_description_moved">
                {$product->description}
            </div>
        {/if}
    </div> <!-- end pb-right-column-->
</div> <!-- end primary_block -->
 
 
 
Save and reload the product detail page, and see if it's on the location you want.
 
After that, you can decorate the text using normal css in themes/<your theme folder>/css/global.css:
 
.product_description_moved {
    text-size: 16px;   // <- do here whatever changes you want to make to the text.
}
 
That should do the trick.
 
 
 
To remove the tabs at the bottom:
- To remove the review tab, just uninstall products comments module
 
- To remove the description at the bottom, you can do this:
 
in global.css, add this code:
 
 
#product #center_column ul.nav.nav-tabs.tab-info.page-product-heading{

    display: none;

}
 
#product #center_column .tab-content {

    display: none;

}

 

 

That should do it all.

 

If you have problems with editing the product.tpl   (make sure you edit the one in your theme folder), then attach the file here, and I will try to do it for you.

 

pascal

  • Like 1
Link to comment
Share on other sites

  • 3 years later...

Salut Pascal

With your help I managed to move the full decsription out of the tab section, which is great!

But now, I would like to move the product DETAILS out of the tab section as well - and I just don't get it to work:

I can move the details section to where I want it, BUT the infos are not visible, until I press the tab "details". But of course I want to get rid of the tabs generally and the details should show just without any further action.

So I need something like

{product title}

{short description}

{full description}

{cart stuff}

{article details}

All infos have to be displayed, the moment the product page is loaded (so the tabs have to disappear).

Do you or anybody have a hint for me, how I can achieve this?

thanks a lot

Seppi

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

  • 3 months later...

Hello @PascalVG !

I know this is an old post, but I want to do the same thing for my Prestashop 1.7.5.1 but it won't work ... I'm currently using a free theme ( bizkick ). I have attached my product.tpl file :) IF you have time, can you take a look ? I want as well to move the description of the product from below, to the right. Thank you ! product.tpl

  • Like 1
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...