Jump to content

Внесение изменений на страницу "Скидки"


Recommended Posts

Здравствуйте!

Сайт: stonehouse.by

У меня возникла проблема с следующим:

На сайте есть страница "Скидки" на которой отображаются все товары с сниженными ценами.

Мне нужно чтобы на ней, еще отображались товары которые помечаются как "распродажа" (на них выводится надпись распродажа или как в моем случае иконка.

В файле product.tpl 

За вывод иконки "распродажа" отвечает следующий код: 

                {if $product->on_sale}
                    <span class="sale-box no-print">
                        <span class="sale-label">{l s=''}</span>
                    </span>
                {elseif $product->specificPrice && $product->specificPrice.reduction && $productPriceWithoutReduction > $productPrice}
                    <span class="discount">{l s='Reduced price!'}</span>
                {/if}

 

Файл отвечающий за страницу "Скидки" содержит следующий код:

{capture name=path}{l s='Price drop'}{/capture}

<h1 class="page-heading product-listing">{l s='Price drop'}</h1>

{if $products}
    <div class="content_sortPagiBar">
        <div class="sortPagiBar clearfix">
            {include file="./product-sort.tpl"}
            {include file="./nbr-product-page.tpl"}
        </div>
        <div class="top-pagination-content clearfix">
            {include file="./product-compare.tpl"}
            {include file="$tpl_dir./pagination.tpl"}
        </div>
    </div>

    {include file="./product-list.tpl" products=$products}

    <div class="content_sortPagiBar">
        <div class="bottom-pagination-content clearfix">
            {include file="./product-compare.tpl"}
            {include file="./pagination.tpl" paginationId='bottom'}
        </div>
    </div>
    {else}
    <p class="alert alert-warning">{l s='No price drop'}</p>
{/if}

 

Подскажите, пожалуйста как мне решить мою задачу?

Заранее спасибо!

 

Link to comment
Share on other sites

Можно подробнее? Я плохо в этом разбираюсь.

И еще, если, допустим, нужно заменить выводимые там товары, на подкатегории, которые содержат эти товары, как это сделать?

 

Link to comment
Share on other sites

  • 3 weeks later...
On 17.01.2018 at 10:19 PM, romanovich said:

Нашел человека, который все сделал.

Благодарю webprog за отклик!

Здравствуйте!

Поделитесь решением данной задачи, пож-та

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...