<?if(count($arElement["PRICE"])>0):?>
<div class="item-price" itemprop = "offers" itemscope itemtype = "http://schema.org/Offer">
<?if ($arResult['bDiscount']):?>
<span itemprop = "price"><?=$arResult['PRICE']['DISCOUNT_PRICE_F']?></span> <s><span itemprop = "price"><?=$arResult['PRICE']['PRICE_F']?></span></s>
<?else:?>
<span itemprop = "price"><?=$arResult['PRICE']['PRICE_F']?></span>
<?endif;?>
</div>
<?else:
$price_from = '';
if($arResult['DISPLAY_PROPERTIES']['MAXIMUM_PRICE']['VALUE'] > $arResult['DISPLAY_PROPERTIES']['MINIMUM_PRICE']['VALUE'])
{
$price_from = GetMessage("CR_PRICE_OT");
}
CModule::IncludeModule("sale")
?>
<div class="item-price" itemprop = "offers" itemscope itemtype = "http://schema.org/Offer"><span><?=$price_from?><span itemprop = "price"><?=FormatCurrency($arResult['DISPLAY_PROPERTIES']['MINIMUM_PRICE']['VALUE'], CSaleLang::GetLangCurrency(SITE_ID))?></span></span></div>
<?endif;?>
|