Marts Posted March 26, 2014 Share Posted March 26, 2014 При заполнении описания категорий, подкатегорий информация на странице дублируется. Подскажите пожалуйста как устранить и в каком файле. Link to comment Share on other sites More sharing options...
carcous Posted March 27, 2014 Share Posted March 27, 2014 При заполнении описания категорий, подкатегорий информация на странице дублируется. Подскажите пожалуйста как устранить и в каком файле. themes/<тема>/category.tpl находим строку <div class="cat_desc"> и код ниже приводим в соответствие этому: {if strlen($category->description) > 120} <div id="category_description_short">{$category->description|truncate:120}</div> <div 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> {else} <p>{$category->description}</p> {/if} 1 Link to comment Share on other sites More sharing options...
Marts Posted March 27, 2014 Author Share Posted March 27, 2014 themes/<тема>/category.tpl находим строку <div class="cat_desc"> и код ниже приводим в соответствие этому: {if strlen($category->description) > 120} <div id="category_description_short">{$category->description|truncate:120}</div> <div 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> {else} <p>{$category->description}</p> {/if} Спасибо огромное, исправил. 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