Jump to content

Красивое оформление UserInfoPane

Featured Replies

RyuK, почему код с Зоны, а спрашиваешь тут?

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=34978
Share on other sites
  • Replies 101
  • Created
  • Последний ответ
Expand topic overview

Лучшие авторы в теме

Лучшие авторы в теме

Most Popular Posts

WOLF
WOLF

вот что у меня:   после: <ul class='basic_info'> добавляете: <if test="postOnline:|:$author['_online']"> <span><img src="__wolf-host.ru/forum/public/style_images/online.png

Lordbl4
Lordbl4

DimanZM, попробуй использовать поиск и почитать темы с примерами, благо таких хватает. так же есть разжеванная информация по поводу того, какой кусок кода за что в UserInfoPane отвечает   а если не

Bathed
Bathed

ребят помогите сделать такую панельку и хук, с кружком около аватарки. __prntscr.com/53w979

Expand topic overview

А как мне сделать чтоб сразу было Сообщение 15

смотрите скрин, надо чтоб цифра была за сообщением, а не перед

post-5155-0-25667700-1370925814.png

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35271
Share on other sites

А как мне сделать чтоб сразу было Сообщение 15

смотрите скрин, надо чтоб цифра была за сообщением, а не перед

скиньте ваш UserInfopane под спойлер

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35275
Share on other sites

Изменил процентную ширину, теперь как по центру сделать?

 

post-4072-0-93115800-1370929046.jpg

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35276
Share on other sites

Изменил процентную ширину, теперь как по центру сделать?

 

attachicon.gif123.jpg

ссыль в студию

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35278
Share on other sites

WOLF, уже убрал эту хрень. Не нужно.

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35279
Share on other sites

скиньте ваш UserInfopane под спойлер

<div itemscope itemtype="__schema.org/Person" class='user_details'>
	<span class='hide' itemprop="name">{$author['members_display_name']}</span>
	<ul class='basic_info'>
		<if test="membertitle:|:$author['member_title']">
			<p class='desc member_title'>{$author['member_title']}</p>
		</if>
		<if test="avatar:|:$author['member_id']">
			<li class='avatar'>
				<if test="canSeeProfiles:|:$this->memberData['g_is_supmod'] OR ( $this->memberData['g_mem_info'] && ! IPSMember::isInactive( $author ) )">
				<a itemprop="url" href="{parse url="showuser={$author['member_id']}" template="showuser" seotitle="{$author['members_seo_name']}" base="public"}" title="{$this->lang->words['view_profile']}: {$author['members_display_name']}" class='ipsUserPhotoLink'>
				</if>
				<if test="hasVariable:|:$this->settings['member_topic_avatar_max']">	
					<img itemprop="image" src='{$author['pp_main_photo']}' class='ipsUserPhoto ipsUserPhoto_variable' />
				<else />
					<img itemprop="image" src='{$author['pp_thumb_photo']}' class='ipsUserPhoto ipsUserPhoto_large' />
				</if>
				<if test="canSeeProfiles2:|:$this->memberData['g_is_supmod'] OR ( $this->memberData['g_mem_info'] && ! IPSMember::isInactive( $author ) )">
				</a>
				</if>
			</li>
		<else />
			<li class='avatar'>
				<img itemprop="image" src='{$author['pp_thumb_photo']}' class='ipsUserPhoto ipsUserPhoto_large' />
			</li>
		</if>
		<li class='group_title'>
			{$author['_group_formatted']}
		</li>
		<if test="rankimage:|:$author['member_rank_img']">
			<li class='group_icon'>
			<if test="rankimageimage:|:$author['member_rank_img_i'] == 'img'">
				<img src='{$author['member_rank_img']}' alt='' />
			<else />
				{$author['member_rank_img']}
			</if>
			</li>
		</if>
		<if test="authorwarn:|:$author['show_warn']">
			<li>
				<if test="hasWarningId:|:$options['wl_id']">
					<img src='{$this->settings['img_url']}/warn.png' class='clickable' onclick='warningPopup( this, {$options['wl_id']} )' title='{$this->lang->words['warnings_issued']}' />
				</if>
				<a class='desc lighter blend_links' href='{parse url="app=members&amp;module=profile&amp;section=warnings&amp;member={$author['member_id']}&amp;from_app={$this->request['app']}&amp;from_id1={$contentid}&amp;from_id2={$options['id2']}" base="public"}' id='warn_link_{$contentid}_{$author['member_id']}' title='{$this->lang->words['warn_view_history']}'>{parse expression="sprintf( $this->lang->words['warn_status'], $author['warn_level'] )"}</a>
			</li>
		</if>
	</ul>

	<if test="authorcfields:|:$author['custom_fields'] != """>
		<ul class='custom_fields'>
			<foreach loop="customFieldsOuter:$author['custom_fields'] as $group => $data">
                                       <if test="postCount:|:$author['member_id']">
                                        <li class='post_count desc lighter'>
                               {parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"} <b>{$this->lang->words['m_posts']}</b>
                                     </li>
                                  </if>
				<foreach loop="customFields:$author['custom_fields'][ $group ] as $field">
					<if test="$field != ''">
						<li>
							{$field}
						</li>
					</if>
				</foreach>
			</foreach>
		</ul>
	</if>

</div>
Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35317
Share on other sites


{parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"} {$this->lang->words['m_posts']}

Вот тут поменяй местами, т.е сделай так:

{$this->lang->words['m_posts']} {parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"}
Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35322
Share on other sites

 

Вот тут поменяй местами, т.е сделай так:



{$this->lang->words['m_posts']} {parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"}

спасибо, а как мне б сделать чтоб сообщение было с большой буквы и чтоб было так к примеру Сообщение: 15

тоисть после сообщение 2 точие

от как сдесь на этом форуме?

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35324
Share on other sites

двоеточие:

{$this->lang->words['m_posts']}: {parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"}

С большой буквы: АЦ-внешний вид-языки- ищите слово "сообщения" и пишите его с большой буквы

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35326
Share on other sites

двоеточие:





{$this->lang->words['m_posts']}: {parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"}

С большой буквы: АЦ-внешний вид-языки- ищите слово "сообщения" и пишите его с большой буквы

post-5155-0-20736100-1370951061.png

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35329
Share on other sites

Ищите поиском вверху "защищенный пакет языков" - найдете

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35332
Share on other sites

ну вот (или не так)

не могли вы бы сделать скрин!

post-5155-0-48004200-1370952895_thumb.pn

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35334
Share on other sites

ну вот (или не так)

не могли вы бы сделать скрин!

поиск на этом форуме, а не на ваешем

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35335
Share on other sites

поиск на этом форуме, а не на ваешем

а как мне найти стиль Baisik у меня

а я поял ссори за спам)

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35339
Share on other sites

возник ище такой вопрос

почему-то не отображается в колонке

Предупреждения

 

скрин ниже, я так понял надо вставить вниз чтото (скопировать и удалить ну как и в первом посте написано) 

от мой шаблончик 

userInfoPane

<div itemscope itemtype="__schema.org/Person" class='user_details'>
	<span class='hide' itemprop="name">{$author['members_display_name']}</span>
	<ul class='basic_info'>
		<if test="membertitle:|:$author['member_title']">
			<p class='desc member_title'>{$author['member_title']}</p>
		</if>
		<if test="avatar:|:$author['member_id']">
			<li class='avatar'>
				<if test="canSeeProfiles:|:$this->memberData['g_is_supmod'] OR ( $this->memberData['g_mem_info'] && ! IPSMember::isInactive( $author ) )">
				<a itemprop="url" href="{parse url="showuser={$author['member_id']}" template="showuser" seotitle="{$author['members_seo_name']}" base="public"}" title="{$this->lang->words['view_profile']}: {$author['members_display_name']}" class='ipsUserPhotoLink'>
				</if>
				<if test="hasVariable:|:$this->settings['member_topic_avatar_max']">	
					<img itemprop="image" src='{$author['pp_main_photo']}' class='ipsUserPhoto ipsUserPhoto_variable' />
				<else />
					<img itemprop="image" src='{$author['pp_thumb_photo']}' class='ipsUserPhoto ipsUserPhoto_large' />
				</if>
				<if test="canSeeProfiles2:|:$this->memberData['g_is_supmod'] OR ( $this->memberData['g_mem_info'] && ! IPSMember::isInactive( $author ) )">
				</a>
				</if>
			</li>
		<else />
			<li class='avatar'>
				<img itemprop="image" src='{$author['pp_thumb_photo']}' class='ipsUserPhoto ipsUserPhoto_large' />
			</li>
		</if>
		<li class='group_title'>
			{$author['_group_formatted']}
		</li>
		<if test="rankimage:|:$author['member_rank_img']">
			<li class='group_icon'>
			<if test="rankimageimage:|:$author['member_rank_img_i'] == 'img'">
				<img src='{$author['member_rank_img']}' alt='' />
			<else />
				{$author['member_rank_img']}
			</if>
			</li>
		</if>
		<if test="authorwarn:|:$author['show_warn']">
			<li>
				<if test="hasWarningId:|:$options['wl_id']">
					<img src='{$this->settings['img_url']}/warn.png' class='clickable' onclick='warningPopup( this, {$options['wl_id']} )' title='{$this->lang->words['warnings_issued']}' />
				</if>
				<a class='desc lighter blend_links' href='{parse url="app=members&amp;module=profile&amp;section=warnings&amp;member={$author['member_id']}&amp;from_app={$this->request['app']}&amp;from_id1={$contentid}&amp;from_id2={$options['id2']}" base="public"}' id='warn_link_{$contentid}_{$author['member_id']}' title='{$this->lang->words['warn_view_history']}'>{parse expression="sprintf( $this->lang->words['warn_status'], $author['warn_level'] )"}</a>
			</li>
		</if>
	</ul>

	<if test="authorcfields:|:$author['custom_fields'] != """>
		<ul class='custom_fields'>
			<foreach loop="customFieldsOuter:$author['custom_fields'] as $group => $data">
				<foreach loop="customFields:$author['custom_fields'][ $group ] as $field">
					<if test="$field != ''">
						<li>
							{$field}
						</li>
					</if>
				</foreach>
			</foreach>
                                       <if test="postCount:|:$author['member_id']">
                                        <li class='post_count desc lighter'>
                               <span style='color:#232523;'>{$this->lang->words['m_posts']}:</span> <span style='color:#08a0d1;'>{parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"}</span>
                                     </li>
                                  </if>
		</ul>
	</if>

</div>

post-5155-0-74456200-1370969222.png

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35404
Share on other sites

ipb_style.css

 

найти 

.custom_fields {

добавить:

text-align: center;
Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35405
Share on other sites

неа ниче не изменилось(((

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35410
Share on other sites

кеш браузера очищайте

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35414
Share on other sites

кеш браузера очищайте

почистил и у себя и в движке толку ноль,

может вы не поняли что я имел виду

я хочу чтоб Предупреждения  отображалось как Ник в играх, Город, сообщение (чтоб в колонках)

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35419
Share on other sites

а я думал вам центрировать надо...

<div itemscope itemtype="__schema.org/Person" class='user_details'>
	<span class='hide' itemprop="name">{$author['members_display_name']}</span>
	<ul class='basic_info'>
		<if test="membertitle:|:$author['member_title']">
			<p class='desc member_title'>{$author['member_title']}</p>
		</if>
		<if test="avatar:|:$author['member_id']">
			<li class='avatar'>
				<if test="canSeeProfiles:|:$this->memberData['g_is_supmod'] OR ( $this->memberData['g_mem_info'] && ! IPSMember::isInactive( $author ) )">
				<a itemprop="url" href="{parse url="showuser={$author['member_id']}" template="showuser" seotitle="{$author['members_seo_name']}" base="public"}" title="{$this->lang->words['view_profile']}: {$author['members_display_name']}" class='ipsUserPhotoLink'>
				</if>
				<if test="hasVariable:|:$this->settings['member_topic_avatar_max']">	
					<img itemprop="image" src='{$author['pp_main_photo']}' class='ipsUserPhoto ipsUserPhoto_variable' />
				<else />
					<img itemprop="image" src='{$author['pp_thumb_photo']}' class='ipsUserPhoto ipsUserPhoto_large' />
				</if>
				<if test="canSeeProfiles2:|:$this->memberData['g_is_supmod'] OR ( $this->memberData['g_mem_info'] && ! IPSMember::isInactive( $author ) )">
				</a>
				</if>
			</li>
		<else />
			<li class='avatar'>
				<img itemprop="image" src='{$author['pp_thumb_photo']}' class='ipsUserPhoto ipsUserPhoto_large' />
			</li>
		</if>
		<li class='group_title'>
			{$author['_group_formatted']}
		</li>
		<if test="rankimage:|:$author['member_rank_img']">
			<li class='group_icon'>
			<if test="rankimageimage:|:$author['member_rank_img_i'] == 'img'">
				<img src='{$author['member_rank_img']}' alt='' />
			<else />
				{$author['member_rank_img']}
			</if>
			</li>
		</if>
		<if test="authorwarn:|:$author['show_warn']">
			<li>
				<if test="hasWarningId:|:$options['wl_id']">
					<img src='{$this->settings['img_url']}/warn.png' class='clickable' onclick='warningPopup( this, {$options['wl_id']} )' title='{$this->lang->words['warnings_issued']}' />
				</if>
				<a class='desc lighter blend_links' href='{parse url="app=members&amp;module=profile&amp;section=warnings&amp;member={$author['member_id']}&amp;from_app={$this->request['app']}&amp;from_id1={$contentid}&amp;from_id2={$options['id2']}" base="public"}' id='warn_link_{$contentid}_{$author['member_id']}' title='{$this->lang->words['warn_view_history']}'>{parse expression="sprintf( $this->lang->words['warn_status'], $author['warn_level'] )"}</a>
			</li>
		</if>
	</ul>

	<if test="authorcfields:|:$author['custom_fields'] != """>
		<ul class='custom_fields'>
			<foreach loop="customFieldsOuter:$author['custom_fields'] as $group => $data">
<if test="authorwarn:|:$author['show_warn']">
			<li>
				<if test="hasWarningId:|:$options['wl_id']">
					<img src='{$this->settings['img_url']}/warn.png' class='clickable' onclick='warningPopup( this, {$options['wl_id']} )' title='{$this->lang->words['warnings_issued']}' />
				</if>
				<foreach loop="customFields:$author['custom_fields'][ $group ] as $field">
					<if test="$field != ''">
						<li>
							{$field}
						</li>
					</if>
				</foreach>
			</foreach>
                                       <if test="postCount:|:$author['member_id']">
                                        <li class='post_count desc lighter'>
                               <span style='color:#232523;'>{$this->lang->words['m_posts']}:</span> <span style='color:#08a0d1;'>{parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"}</span>
                                     </li>
                                  </if>
		</ul>
	</if>

</div>
Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35420
Share on other sites

 

а я думал вам центрировать надо...



<div itemscope itemtype="__schema.org/Person" class='user_details'>
	<span class='hide' itemprop="name">{$author['members_display_name']}</span>
	<ul class='basic_info'>
		<if test="membertitle:|:$author['member_title']">
			<p class='desc member_title'>{$author['member_title']}</p>
		</if>
		<if test="avatar:|:$author['member_id']">
			<li class='avatar'>
				<if test="canSeeProfiles:|:$this->memberData['g_is_supmod'] OR ( $this->memberData['g_mem_info'] && ! IPSMember::isInactive( $author ) )">
				<a itemprop="url" href="{parse url="showuser={$author['member_id']}" template="showuser" seotitle="{$author['members_seo_name']}" base="public"}" title="{$this->lang->words['view_profile']}: {$author['members_display_name']}" class='ipsUserPhotoLink'>
				</if>
				<if test="hasVariable:|:$this->settings['member_topic_avatar_max']">	
					<img itemprop="image" src='{$author['pp_main_photo']}' class='ipsUserPhoto ipsUserPhoto_variable' />
				<else />
					<img itemprop="image" src='{$author['pp_thumb_photo']}' class='ipsUserPhoto ipsUserPhoto_large' />
				</if>
				<if test="canSeeProfiles2:|:$this->memberData['g_is_supmod'] OR ( $this->memberData['g_mem_info'] && ! IPSMember::isInactive( $author ) )">
				</a>
				</if>
			</li>
		<else />
			<li class='avatar'>
				<img itemprop="image" src='{$author['pp_thumb_photo']}' class='ipsUserPhoto ipsUserPhoto_large' />
			</li>
		</if>
		<li class='group_title'>
			{$author['_group_formatted']}
		</li>
		<if test="rankimage:|:$author['member_rank_img']">
			<li class='group_icon'>
			<if test="rankimageimage:|:$author['member_rank_img_i'] == 'img'">
				<img src='{$author['member_rank_img']}' alt='' />
			<else />
				{$author['member_rank_img']}
			</if>
			</li>
		</if>
		<if test="authorwarn:|:$author['show_warn']">
			<li>
				<if test="hasWarningId:|:$options['wl_id']">
					<img src='{$this->settings['img_url']}/warn.png' class='clickable' onclick='warningPopup( this, {$options['wl_id']} )' title='{$this->lang->words['warnings_issued']}' />
				</if>
				<a class='desc lighter blend_links' href='{parse url="app=members&amp;module=profile&amp;section=warnings&amp;member={$author['member_id']}&amp;from_app={$this->request['app']}&amp;from_id1={$contentid}&amp;from_id2={$options['id2']}" base="public"}' id='warn_link_{$contentid}_{$author['member_id']}' title='{$this->lang->words['warn_view_history']}'>{parse expression="sprintf( $this->lang->words['warn_status'], $author['warn_level'] )"}</a>
			</li>
		</if>
	</ul>

	<if test="authorcfields:|:$author['custom_fields'] != """>
		<ul class='custom_fields'>
			<foreach loop="customFieldsOuter:$author['custom_fields'] as $group => $data">
<if test="authorwarn:|:$author['show_warn']">
			<li>
				<if test="hasWarningId:|:$options['wl_id']">
					<img src='{$this->settings['img_url']}/warn.png' class='clickable' onclick='warningPopup( this, {$options['wl_id']} )' title='{$this->lang->words['warnings_issued']}' />
				</if>
				<foreach loop="customFields:$author['custom_fields'][ $group ] as $field">
					<if test="$field != ''">
						<li>
							{$field}
						</li>
					</if>
				</foreach>
			</foreach>
                                       <if test="postCount:|:$author['member_id']">
                                        <li class='post_count desc lighter'>
                               <span style='color:#232523;'>{$this->lang->words['m_posts']}:</span> <span style='color:#08a0d1;'>{parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"}</span>
                                     </li>
                                  </if>
		</ul>
	</if>

</div>

вставляю, сохраняю пишит

 

В шаблоне обнаружена ошибка синтаксиса. Проверьте правильность содержимого шаблона и попробуйте сохранить его снова.

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35422
Share on other sites

извиняюсь

 

<div itemscope itemtype="__schema.org/Person" class='user_details'>
<span class='hide' itemprop="name">{$author['members_display_name']}</span>
<ul class='basic_info'>
<if test="membertitle:|:$author['member_title']">
<p class='desc member_title'>{$author['member_title']}</p>
</if>
<if test="avatar:|:$author['member_id']">
<li class='avatar'>
<if test="canSeeProfiles:|:$this->memberData['g_is_supmod'] OR ( $this->memberData['g_mem_info'] && ! IPSMember::isInactive( $author ) )">
<a itemprop="url" href="{parse url="showuser={$author['member_id']}" template="showuser" seotitle="{$author['members_seo_name']}" base="public"}" title="{$this->lang->words['view_profile']}: {$author['members_display_name']}" class='ipsUserPhotoLink'>
</if>
<if test="hasVariable:|:$this->settings['member_topic_avatar_max']"> 
<img itemprop="image" src='{$author['pp_main_photo']}' class='ipsUserPhoto ipsUserPhoto_variable' />
<else />
<img itemprop="image" src='{$author['pp_thumb_photo']}' class='ipsUserPhoto ipsUserPhoto_large' />
</if>
<if test="canSeeProfiles2:|:$this->memberData['g_is_supmod'] OR ( $this->memberData['g_mem_info'] && ! IPSMember::isInactive( $author ) )">
</a>
</if>
</li>
<else />
<li class='avatar'>
<img itemprop="image" src='{$author['pp_thumb_photo']}' class='ipsUserPhoto ipsUserPhoto_large' />
</li>
</if>
<li class='group_title'>
{$author['_group_formatted']}
</li>
<if test="rankimage:|:$author['member_rank_img']">
<li class='group_icon'>
<if test="rankimageimage:|:$author['member_rank_img_i'] == 'img'">
<img src='{$author['member_rank_img']}' alt='' />
<else />
{$author['member_rank_img']}
</if>
</li>
</if>
<if test="authorwarn:|:$author['show_warn']">
<li>
<if test="hasWarningId:|:$options['wl_id']">
<img src='{$this->settings['img_url']}/warn.png' class='clickable' onclick='warningPopup( this, {$options['wl_id']} )' title='{$this->lang->words['warnings_issued']}' />
</if>

</li>
</if>
</ul>

<if test="authorcfields:|:$author['custom_fields'] != """>
<ul class='custom_fields'>
<foreach loop="customFieldsOuter:$author['custom_fields'] as $group => $data">

<foreach loop="customFields:$author['custom_fields'][ $group ] as $field">

<if test="$field != ''">
<li>
{$field}
</li>
</if>
</foreach>
</foreach>

                                       <if test="postCount:|:$author['member_id']">
                                        <li class='post_count desc lighter'>
                               <span style='color:#232523;'>{$this->lang->words['m_posts']}:</span> <span style='color:#08a0d1;'>{parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"}</span>
                                     </li>
                                  </if>
<li><a class='desc lighter blend_links' href='{parse url="app=members&amp;module=profile&amp;section=warnings&amp;member={$author['member_id']}&amp;from_app={$this->request['app']}&amp;from_id1={$contentid}&amp;from_id2={$options['id2']}" base="public"}' id='warn_link_{$contentid}_{$author['member_id']}' title='{$this->lang->words['warn_view_history']}'>{parse expression="sprintf( $this->lang->words['warn_status'], $author['warn_level'] )"}</a></li>
</ul>
</if>

</div>

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35429
Share on other sites

спасибо)

ну я тоже тут розобрался ну и на этом тебе спасибо огромное)

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35430
Share on other sites

а как сделать Предуприждение таким цветом, а количество другим цветом

я так понял эт тут надо пилить



<li><a class='desc lighter blend_links' href='{parse url="app=members&amp;module=profile&amp;section=warnings&amp;member={$author['member_id']}&amp;from_app={$this->request['app']}&amp;from_id1={$contentid}&amp;from_id2={$options['id2']}" base="public"}' id='warn_link_{$contentid}_{$author['member_id']}' title='{$this->lang->words['warn_view_history']}'>{parse expression="sprintf( $this->lang->words['warn_status'], $author['warn_level'] )"}</a></li>

а у меня ниче не получается...

 

от как у меня сообщение

<if test="postCount:|:$author['member_id']">
                                        <li class='post_count desc lighter'>
                               <span style='color:#232523;'>{$this->lang->words['m_posts']}:</span> <span style='color:#08a0d1;'>{parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"}</span>
                                     </li>
                                  </if>

Edited by VETALDX

Link to comment
https://ipbmafia.ru/topic/3989-krasivoe-oformlenie-userinfopane/?&do=findComment&comment=35458
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.


Guest
Ответить в этой теме...

Последние посетители 0

  • No registered users viewing this page.