ajax.3 Posted November 18, 2011 Share Posted November 18, 2011 Помогите, пожалуйста, убрать блок в стандартной теме. На странице отдельного продукта есть блок с названием товара и кнопкой подробнее. Как его удалить? С помощью FireBug нахожу, что нужно удалить <div id="short_description_block"> , но где найти файл на сервере, который нужно изменить. Спасибо. Link to comment Share on other sites More sharing options...
Ronaldo Perez Posted November 18, 2011 Share Posted November 18, 2011 /themes/your_theme/product.tpl Link to comment Share on other sites More sharing options...
ajax.3 Posted November 18, 2011 Author Share Posted November 18, 2011 /themes/your_theme/product.tpl Да, я в этом фйле на ходил и удалял следующее <!-- left infos--> <div id="pb-left-column"> {if $product->description_short OR $packItems|@count > 0} <div id="short_description_block"> {if $product->description_short} <div id="short_description_content" class="rte align_justify">{$product->description_short}</div> {/if} {if $product->description} <p class="buttons_bottom_block"><a href="javascript:{ldelim}{rdelim}" class="button">{l s='More details'}</a></p> {/if} {if $packItems|@count > 0} <h3>{l s='Pack content'}</h3> {foreach from=$packItems item=packItem} <div class="pack_content"> {$packItem.pack_quantity} x <a href="{$link->getProductLink($packItem.id_product, $packItem.link_rewrite, $packItem.category)}">{$packItem.name|escape:'htmlall':'UTF-8'}</a> <p>{$packItem.description_short}</p> </div> {/foreach} {/if} </div> {/if} но это не помагает, может что-то другое нужно удалить? Link to comment Share on other sites More sharing options...
Ronaldo Perez Posted November 18, 2011 Share Posted November 18, 2011 {if $product->description_short} <div id="short_description_content" class="rte align_justify">{$product->description_short}</div> {/if} только это. настройки -> быстродействие кэш выключи, перекомпиляцию шаблона - включи пока возишься с шаблоном, потом верни в исходное положение Link to comment Share on other sites More sharing options...
ajax.3 Posted November 18, 2011 Author Share Posted November 18, 2011 {if $product->description_short} <div id="short_description_content" class="rte align_justify">{$product->description_short}</div> {/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