ased79 Posted April 28, 2017 Report Share Posted April 28, 2017 -- Характеристики товара (The End)--> {/if} <!-- Соседние товары /--> <div id="back_forward"> {if $prev_product} ← <a class="prev_page_link" href="products/{$prev_product->url}">{$prev_product->name|escape}</a> {/if} {if $next_product} <a class="next_page_link" href="products/{$next_product->url}">{$next_product->name|escape}</a> → {/if} </div> Quote Link to post Share on other sites
Noxter Posted April 28, 2017 Report Share Posted April 28, 2017 (edited) Удаляете вот эту часть кода: <!-- Соседние товары /--><div id="back_forward">{if $prev_product}← <a class="prev_page_link" href="products/{$prev_product->url}">{$prev_product->name|escape}</a>{/if}{if $next_product}<a class="next_page_link" href="products/{$next_product->url}">{$next_product->name|escape}</a> →{/if}</div> Также если хотите убрать лишние запросы к базе, то удалите следующий код из файла view/ProductView.php // Соседние товары$this->design->assign('next_product', $this->products->get_next_product($product->id));$this->design->assign('prev_product', $this->products->get_prev_product($product->id)); P.S. Кривой редактор форума!! Поехал текст, но думаю разберетесь. Edited April 28, 2017 by Noxter Quote Link to post Share on other sites
ased79 Posted May 1, 2017 Author Report Share Posted May 1, 2017 Спасибо помогло! Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.