Skip to content

Instantly share code, notes, and snippets.

@d1i1m1o1n
Created November 15, 2015 21:12
Show Gist options
  • Save d1i1m1o1n/53ae97e463fa54910cbf to your computer and use it in GitHub Desktop.
Save d1i1m1o1n/53ae97e463fa54910cbf to your computer and use it in GitHub Desktop.
Bitrix print price with discount
<?if($arResult["PRICE"]["DISCOUNT_PRICE"] < $arResult["PRICE"]["RESULT_PRICE"]["BASE_PRICE"]):?>
<p class="tovar__price">Цена без скидки: <del><?=str_replace('.', ',', $arResult["PRICE"]["RESULT_PRICE"]["BASE_PRICE"])?></del> руб.</p>
<p class="tovar__price">Цена со скидкой: <span><?=str_replace('.', ',', $arResult["PRICE"]["DISCOUNT_PRICE"])?></span> руб.</p>
<p class="tovar__price--discount">Скидка: <span><?=str_replace('.', ',', $arResult["PRICE"]["RESULT_PRICE"]["DISCOUNT"])?> руб. (<?=$arResult["PRICE"]["RESULT_PRICE"]["PERCENT"]?>%)</span></p>
<?else:?>
<p class="tovar__price">Цена: <span><?=str_replace('.', ',', $arResult["PRICE"]["DISCOUNT_PRICE"])?></span> руб.</p>
<?endif;?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment