przemek108 Posted October 8, 2014 Share Posted October 8, 2014 Witam, mam następujący problem, przed kliknięciem przycisku więcej tekst jest formatowany w ten sposób : Chciałbym, żeby przed kliknięciem przycisku więcej wyglądało to wszystko tak jak po kliknięciu, czyli następująco : W pliku category.tpl nie widzę nic ciekawego.. o to kawałek kodu odpowiadający za działanie przycisku więcej. {if $category->description} {if strlen($category->description) > 120} <section class='layout'> <article class='article'> <div class='border'> <div class='jarakgrid'> <div class='hr'></div> <div class="cat_desc clearfix" id="category_description_short"> {$category->description|strip_tags|truncate:240} </span> </div> <div class="cat_desc clearfix" id="category_description_full" style="display:none"> {$category->description} </div> <a href="#" onclick="$('#category_description_short').hide(); $('#category_description_full').show(); $(this).hide(); return false;" class="lnk_more">{l s='More'}</a> </div> </div> </article> {else} <div class="cat_desc clearfix">{$category->description}</div> {/if} {/if} </div> Link to comment Share on other sites More sharing options...
vekia Posted October 9, 2014 Share Posted October 9, 2014 ten skład, waga długość itp. to nie są cechy produktu? to jest opis? Link to comment Share on other sites More sharing options...
przemek108 Posted October 10, 2014 Author Share Posted October 10, 2014 (edited) To jest opis kategorii, więc nie może to być cecha produktu. Powyżej dodałem kod który odpowiada za wyświetlanie się tego. W kodzie nic nie widać co by za to odpowiadało, więc wydaje mi się, że jest to zmieniane gdzieś na poziomie kontrolera, chodź głowy nie dam. Edited October 10, 2014 by przemek108 (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted October 10, 2014 Share Posted October 10, 2014 ja wciąż uważam, że są to cechy produktu zamiast kodu: {if strlen($category->description) > 120} <section class='layout'> <article class='article'> <div class='border'> <div class='jarakgrid'> <div class='hr'></div> <div class="cat_desc clearfix" id="category_description_short"> {$category->description|strip_tags|truncate:240} </span> </div> <div class="cat_desc clearfix" id="category_description_full" style="display:none"> {$category->description} </div> <a href="#" onclick="$('#category_description_short').hide(); $('#category_description_full').show(); $(this).hide(); return false;" class="lnk_more">{l s='More'}</a> </div> </div> </article> {else} <div class="cat_desc clearfix">{$category->description}</div> {/if} skorzystaj wyłącznie z: <div class="cat_desc clearfix">{$category->description}</div> Link to comment Share on other sites More sharing options...
przemek108 Posted October 10, 2014 Author Share Posted October 10, 2014 ja wciąż uważam, że są to cechy produktu zamiast kodu: {if strlen($category->description) > 120} <section class='layout'> <article class='article'> <div class='border'> <div class='jarakgrid'> <div class='hr'></div> <div class="cat_desc clearfix" id="category_description_short"> {$category->description|strip_tags|truncate:240} </span> </div> <div class="cat_desc clearfix" id="category_description_full" style="display:none"> {$category->description} </div> <a href="#" onclick="$('#category_description_short').hide(); $('#category_description_full').show(); $(this).hide(); return false;" class="lnk_more">{l s='More'}</a> </div> </div> </article> {else} <div class="cat_desc clearfix">{$category->description}</div> {/if} skorzystaj wyłącznie z: <div class="cat_desc clearfix">{$category->description}</div> No tak, z tym że ja chciałbym aby ten przycisk więcej był! Link to comment Share on other sites More sharing options...
Recommended Posts