plutten22 Posted February 21, 2017 Share Posted February 21, 2017 (edited) Hi. Can someone tell me how i can make the description on manufacturer page show all description with out "more" and how to make it white background. I have done this to categorypage but i can not find how to do this on manufacturer page. I attache a picture showing what i want. I use PS 1.6 webpage: www.cykelstaden.se Regards Plutten22 Edited February 21, 2017 by plutten22 (see edit history) Link to comment Share on other sites More sharing options...
plutten22 Posted February 22, 2017 Author Share Posted February 22, 2017 Can anyone help ? Link to comment Share on other sites More sharing options...
rocky Posted February 26, 2017 Share Posted February 26, 2017 Just change lines 33-53 (in PrestaShop v1.6.1.11) of themes/default-bootstrap/manufacturer.tpl from: {if !empty($manufacturer->description) || !empty($manufacturer->short_description)} <div class="description_box rte"> {if !empty($manufacturer->short_description)} <div class="short_desc"> {$manufacturer->short_description} </div> <div class="hide_desc"> {$manufacturer->description} </div> {if !empty($manufacturer->description)} <a href="#" class="lnk_more" onclick="$(this).prev().slideDown('slow'); $(this).hide();$(this).prev().prev().hide(); return false;"> {l s='More'} </a> {/if} {else} <div> {$manufacturer->description} </div> {/if} </div> {/if} to: {if !empty($manufacturer->description) || !empty($manufacturer->short_description)} <div class="description_box rte"> {* {if !empty($manufacturer->short_description)} <div class="short_desc"> {$manufacturer->short_description} </div> <div class="hide_desc"> *} {$manufacturer->description} {* </div> {if !empty($manufacturer->description)} <a href="#" class="lnk_more" onclick="$(this).prev().slideDown('slow'); $(this).hide();$(this).prev().prev().hide(); return false;"> {l s='More'} </a> {/if} {else} <div> {$manufacturer->description} </div> {/if} *} </div> {/if} This should show only the long description. 1 Link to comment Share on other sites More sharing options...
plutten22 Posted February 26, 2017 Author Share Posted February 26, 2017 Nice. Thanks Rocky. :) How can i get the background white.? Link to comment Share on other sites More sharing options...
rocky Posted February 27, 2017 Share Posted February 27, 2017 You should be able to add something like the following to themes/<your_theme>/css/global.css: .description_box { background: white; } Unfortunately, I can't be more specific without actually checking your website. Link to comment Share on other sites More sharing options...
plutten22 Posted February 27, 2017 Author Share Posted February 27, 2017 Hi Rocky. Thanks it worked fine. Regards / Gary 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