Jump to content

Recommended Posts

  • 2 weeks later...

У меня вот так заработало:

{if $product->variant->compare_price > 0}
<div class="skidka-catalog">
Скидка {floor(abs(100-{$product->variant->compare_price}/($product->variant->price)*100))}%
</div>

{/if}


Выводить можно как и хит продаж из другой темы, т.е. прямо на картинку.

Например так:
.skidka {
background: none repeat scroll 0 0 red;
bottom: 0;
color: #FFFFFF;
font-size: 24px;
height: 28px;
line-height: 28px;
padding: 4px 13px;
position: absolute;
right: 0;
z-index: 1;
}

Не забудьте только прописать к классу image position: relative;

Link to post
Share on other sites

Отлично, только делить нужно новую цену на старую, а не наоборот.

Чтобы вывести правильный процент, вставляем:

{if $product->variant->compare_price > 0}Скидка: {floor(abs(100-{$product->variant->price}/($product->variant->compare_price)*100))}%{/if}
Link to post
Share on other sites

Прикольно, а если вместо {floor(abs(100-{$product->variant->price}/($product->variant->compare_price)*100))}% вставить

<div class="aktion_b"><div><span class="diskont">- {floor(abs(100-{$product->variant->price}/($product->variant->compare_price)*100))}<span class="proc">%</span></span></div></div>
и поколдовать с css - то будет выводиться иконка и значение скидки, вот так:
Link to post
Share on other sites
  • 2 years later...

Отправил

А можно ли через теги smarty сортировку по величине скидки сделать? (или даже не сортировку а выборку - так наверное точнее сказать)

 

Подробно:

допустим есть страница с акционными товарами : /sales

Я прописал к ней определенный шаблон.tpl, в этом шаблоне я сделал блоки с поводами акций

Блок1: "В честь меня 30% скидка" и сюда вывести все товары, у которых результат по формуле (котрая выша в теме) 30%

Блок2: "В честь мамы 50% скидка" и сюда вывести все товары, у которых результат по формуле (котрая выша в теме) 50%

Link to post
Share on other sites
  • 2 years later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...