scenteddelights Posted June 20, 2013 Share Posted June 20, 2013 (edited) ok when you write a description for a category and its i guess to long it will shorten it on the site then it will have blue more button with an arrow below it to view more...is there a way to show it all without the customer actually having to click the button to read it.? its about a paragraph length but will only show about one and a half o the starting sentence. Thanks Edited June 20, 2013 by scenteddelights (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted June 20, 2013 Share Posted June 20, 2013 yes, it is possble, just one question: what prestashop version you use? and what template? default one? Link to comment Share on other sites More sharing options...
scenteddelights Posted June 20, 2013 Author Share Posted June 20, 2013 (edited) 1.5.3.1 and the default one Edited June 20, 2013 by scenteddelights (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted June 21, 2013 Share Posted June 21, 2013 okay, so, in the file: themes/default/category.tpl you've got: {if strlen($category->description) > 120} <p id="category_description_short">{$category->description|truncate:120}</p> <p id="category_description_full" style="display:none">{$category->description}</p> <a href="#" onclick="$('#category_description_short').hide(); $('#category_description_full').show(); $(this).hide(); return false;" class="lnk_more">{l s='More'}</a> {else} <p>{$category->description}</p> {/if} change the code above to: <p id="category_description_full" >{$category->description}</p> yes, it's okay, just one line btw. i also moved your topic to the correct forum section 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