Jump to content

Описание категории под товарами версия 1.7.5


Recommended Posts

Приветствую форумчан, подскажите как в версии 1.7.5 сделать описание категорий под списком товаров. Желательно на пальцах :conf:
Вроде как из category-header.tpl нужно перенести $category.description в product-list.tpl
но какой именно кусок кода и в какое место? :(

Link to comment
Share on other sites

  • 1 year later...
  • 1 month later...

Если я правильно понял, вам необходимо просто показать описание категории после списка товаров на странице category?

Все довольно просто, заходим в /themes/your_theme/templates/catalog/listing/product-list.tpl, 

после следующего кода 

{else}
   {include file='errors/not-found.tpl'}

{/if}

добавляем:

{if $category.description}
	<div>
      <p>{$category.description|strip_tags}<p>
    <div>
{/if}

Также не забываем добавить стили для div и p тэгов

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...