lovelas Posted November 9, 2013 Share Posted November 9, 2013 (edited) Witam, sprawa dotyczy złego wyświetlania kategorii (Prestashop 1.5.6.0): Kolekcja >Kozaki>Promocje>Baleriny a powinno być tak: Kolekcja >Kozaki dotyczy to tylko tych kategorii - Kozaki i Botki-, pozostałe wyświetlają się dobrze, tak jak by wpis "promocje - baleriny" został w tych kategoriach ( kozaki i botki) na stałe. Połowicznie poradziłem sobie usuwając taki wpis: {include file="$tpl_dir./breadcrumb.tpl"} Edited November 10, 2013 by lantrado (see edit history) Link to comment Share on other sites More sharing options...
lovelas Posted November 9, 2013 Author Share Posted November 9, 2013 (edited) zdublowany opis kategorii, to tak przy okazji: OK ten problem dotyczy błędu w prestashop 1.5.6.0 a to jest rozwiązanie : Odszukujemy wpis: <div class="cat_desc"> {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} </div> i zamieniemy na <div class="cat_desc"> {if strlen($category->description) > 120} <p id="category_description_short">{$category->description|strip_tags:'UTF-8'|truncate:120}</p> <p id="category_description_full" style="display:none">{$category->description|strip_tags:'UTF-8'}</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} </div> Edited January 27, 2014 by lantrado (see edit history) 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