Цитата |
---|
Денис Диденко пишет:
Кастомизировать шаблон нужного вам компонента. В режиме разработка в меню компонента выберите скопировать шаблон и отредактируйте так как вам надо. Если я не ошибаюсь это неплохо описано в документации. |
Код |
---|
<?if(!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true)die();?> <div class="photo-section"> <?if($arParams["DISPLAY_TOP_PAGER"]):?> <?=$arResult["NAV_STRING"]?><br /> <?endif;?> <table cellpadding="0" cellspacing="0" border="0" class="data-table"> <?foreach($arResult["ROWS"] as $arItems):?> <tr class="head-row" valign="top"> <?foreach($arItems as $arItem):?> <?if(is_array($arItem)):?> <td width="<?=$arResult["TD_WIDTH"]?>"> <?if($arResult["USER_HAVE_ACCESS"]):?> <?if(is_array($arItem["PICTURE"])):?> <a class="gallery" rel="group" href="<?=$arItem["DETAIL_PICTURE"]["SRC"]?>"><img border="0" src="<?=$arItem["PICTURE"]["SRC"]?>" width="<?=$arItem["PICTURE"]["WIDTH"]?>" height="<?=$arItem["PICTURE"]["HEIGHT"]?>" alt="<?=$arItem["NAME"]?>" title="<?=$arItem["NAME"]?>"/></a><br /> <?endif?> <?else:?> <?if(is_array($arItem["PICTURE"])):?> <img border="0" src="<?=$arItem["PICTURE"]["SRC"]?>" width="<?=$arItem["PICTURE"]["WIDTH"]?>" height="<?=$arItem["PICTURE"]["HEIGHT"]?>" alt="<?=$arItem["NAME"]?>" title="<?=$arItem["NAME"]?>" /><br /> <?endif?> <?endif?> </td> <?else:?> <td width="<?=$arResult["TD_WIDTH"]?>" rowspan="<?=$arResult["nRowsPerItem"]?>"> </td> <?endif;?> <?endforeach?> </tr> <tr class="data-row"> <?foreach($arItems as $arItem):?> <?if(is_array($arItem)):?> <th valign="top" width="<?=$arResult["TD_WIDTH"]?>" class="data-cell"> <?if($arResult["USER_HAVE_ACCESS"]):?> <a target=”blank” href="<?=$arItem["DETAIL_PAGE_URL"]?>"><?=$arItem["NAME"]?><?if($arParams["USE_RATING"] && $arItem["PROPERTIES"]["rating"]["VALUE"]) echo "(".$arItem["PROPERTIES"]["rating"]["VALUE"].")"?></a><br /> <?else:?> <?=$arItem["NAME"]?><?if($arParams["USE_RATING"] && $arItem["PROPERTIES"]["rating"]["VALUE"]) echo "(".$arItem["PROPERTIES"]["rating"]["VALUE"].")"?><br /> <?endif?> </th> <?endif;?> <?endforeach?> </tr> <?if($arResult["bDisplayFields"]):?> <tr class="data-row"> <?foreach($arItems as $arItem):?> <?if(is_array($arItem)):?> <th valign="top" width="<?=$arResult["TD_WIDTH"]?>" class=&q |