HowTo Редактировать видимые блоки в профиле пользователя

SergeyB

New member
Joined
Nov 28, 2015
Messages
18
Reaction score
7
CP -> Внешний вид -> Стили -> Default Style -> Шаблоны -> member_view

Инфоблок с сайтом (домашняя страница), адресом (локация):

Домашняя страница
Code:
               <xen:if is="{$user.homepage}">
                   <dl><dt>{xen:phrase home_page}:</dt>
                       <dd><a href="{xen:string censor, $user.homepage, 'x'}" rel="nofollow" target="_blank" itemprop="url">{xen:string censor, $user.homepage}</a></dd></dl>
               </xen:if>
Адрес:
Code:
               <xen:if is="{$user.location}">
                   <dl><dt>{xen:phrase location}:</dt>
                       <dd><a href="{xen:link misc/location-info, '', 'location={xen:string censor, $user.location, 'x'}'}" rel="nofollow" target="_blank" itemprop="address">{xen:string censor, $user.location}</a></dd></dl>
               </xen:if>

Блок информация
О себе

Сайт:
Code:
                                       <xen:if is="{$user.homepage}">
                                           <dl><dt>{xen:phrase home_page}:</dt> <dd><a href="{xen:string censor, $user.homepage, 'x'}" rel="nofollow" target="_blank">{xen:string censor, $user.homepage}</a></dd></dl>
                                       </xen:if>
Адрес:
Code:
                                       <xen:if is="{$user.location}">
                                           <dl><dt>{xen:phrase location}:</dt> <dd><a href="{xen:link 'misc/location-info', '', 'location={xen:string censor, $user.location, '-'}'}" target="_blank" rel="nofollow" itemprop="address" class="concealed">{xen:string censor, $user.location}</a></dd></dl>
                                       </xen:if>
 
Top