Jump to content

% От Цены В Карточке Товара (1.6.1.3)


Recommended Posts

Всем привет! Подскажите пожалуйста можно ли под ценой товара вставить цифру (которая будет являться 1% от цены но не меньше 50 рублей), т.е.:

 

Цена: 1000 рублей

Парампам: 50 рублей

 

 

Парампам здесь равно не 10 рублей а 50, т.к. 1% от 1000 < 50 рублей...

 

Я дума суть ясна.

 

Буду примного благодарен за помощь, куда воткнуть понимаю, а вот что воткнуть чтобы работало нет. Пробовал разные варианты... получаю белую страницу или текст самой "формулы" (условие не знаю как поставить правильно):

<p>Парампам: {convertPrice price=$productPrice}*0,10%</p>
Link to comment
Share on other sites

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

 

{if $productPrice}
   {assign var='k' value=$productPrice*0.01}
   {if $k >= 50}
      {assign var='finish' value=$k}
   {elseif $k < 50}
      {assign var='finish' value=50}
   {/if}

{/if}

<span id="our_price_display" itemprop="price">{convertPrice price=$finish}</span>

Link to comment
Share on other sites

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

 

{if $productPrice}

   {assign var='k' value=$productPrice*0.01}

   {if $k >= 50}

      {assign var='finish' value=$k}

   {elseif $k < 50}

      {assign var='finish' value=50}

   {/if}

{/if}

<span id="our_price_display" itemprop="price">{convertPrice price=$finish}</span>

 

Благодарю! 

Edited by pr0fessor (see edit history)
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...