sickshot Posted April 3, 2015 Share Posted April 3, 2015 (edited) so I want to move full description as it is shown on attached images. can anyone help? Now I Got this: and I want to make it like this: Edited April 7, 2015 by sickshot (see edit history) Link to comment Share on other sites More sharing options...
PascalVG Posted April 4, 2015 Share Posted April 4, 2015 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 Link to comment Share on other sites More sharing options...
sickshot Posted April 5, 2015 Author Share Posted April 5, 2015 (edited) 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 April 5, 2015 by sickshot (see edit history) Link to comment Share on other sites More sharing options...
PascalVG Posted April 5, 2015 Share Posted April 5, 2015 Ah, ok, I see :-) A few more questions: - Where do you want the review (if any)? - What PS version do you use? Link to comment Share on other sites More sharing options...
sickshot Posted April 6, 2015 Author Share Posted April 6, 2015 -i dont need review at all just remove -ps 1.6.0.9 Link to comment Share on other sites More sharing options...
PascalVG Posted April 7, 2015 Share Posted April 7, 2015 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 1 Link to comment Share on other sites More sharing options...
sickshot Posted April 7, 2015 Author Share Posted April 7, 2015 Thank you Pascal! works like charm. yes the theme is Leo shirt but still code was the same. Link to comment Share on other sites More sharing options...
Seppi Posted November 24, 2018 Share Posted November 24, 2018 (edited) 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 November 24, 2018 by Seppi (see edit history) Link to comment Share on other sites More sharing options...
Adrian Dragomiroiu Posted March 24, 2019 Share Posted March 24, 2019 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 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