<? $intIBlockID = 9; //ID инфоблока $mxResult = CCatalogSKU::GetInfoByProductIBlock( $intIBlockID ); if (is_array($mxResult)) { $rsOffers = CIBlockElement::GetList(array(),array('IBLOCK_ID' => $mxResult['IBLOCK_ID'], 'PROPERTY_'.$mxResult['SKU_PROPERTY_ID'] => $arElement["ID"])); while ($arOffer = $rsOffers->GetNext()) { $ar_price = GetCatalogProductPrice($arOffer["ID"], 3); // 3 в данном случае тип цены echo $ar_price["PRICE"]." р."; break; } } ?>