zoomslow
Проверенные
- Сообщения
- 11
- Реакции
- 55
- Баллы
- 5,520
Последнее редактирование модератором:
Смотрите видео ниже, чтобы узнать, как установить наш сайт в качестве веб-приложения на домашнем экране.
Примечание: В настоящее время эта функция требует доступа к сайту с помощью встроенного браузера Safari.
<li><a href="{$requestPaths.requestUri}#profilePosts">{xen:phrase profile_posts}</a></li>
<xen:if is="{$showRecentActivity}"><li><a href="{$requestPaths.requestUri}#recentActivity">{xen:phrase recent_activity}</a></li></xen:if>
<li><a href="{$requestPaths.requestUri}#postings">{xen:phrase postings}</a></li>
<li><a href="{$requestPaths.requestUri}#info">{xen:phrase information}</a></li>
<li><a href="{$requestPaths.requestUri}#profilePosts">{xen:phrase profile_posts}</a></li>
<xen:if is="{$showRecentActivity}"><li><a href="{$requestPaths.requestUri}#recentActivity">{xen:phrase recent_activity}</a></li></xen:if>
<li><a href="{$requestPaths.requestUri}#postings">{xen:phrase postings}</a></li>
<li><a href="{$requestPaths.requestUri}#info">{xen:phrase information}</a></li>
<xen:require css="message_user_info.css" />
<div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">
<div class="messageUserBlock">
<center><xen:if is="!{$isQuickReply}">
<xen:hook name="message_user_info_text" params="{xen:array 'user={$user}', 'isQuickReply={$isQuickReply}'}">
<h3 class="userText">
<xen:username user="$user" itemprop="name" rich="true" />
<xen:if hascontent="true"><em class="userTitle" itemprop="title"><xen:contentcheck>{xen:helper userTitle, $user, 1, 1}</xen:contentcheck></em></xen:if>
</center>
<!-- slot: message_user_info_text -->
</h3>
</xen:hook>
<xen:if is="{$user.isOnline}"><span class="Tooltip onlineMarker" title="{xen:phrase online_now}" data-offsetX="-22" data-offsetY="-8"></span>
<xen:else />
<span class="Tooltip offlineMarker" title="Offline" data-offsetX="-10" data-offsetY="-8"></span>
</xen:if>
<xen:hook name="message_user_info_avatar" params="{xen:array 'user={$user}', 'isQuickReply={$isQuickReply}'}">
<div class="avatarHolder">
<span class="helper"></span>
<a class="username avatar Av{$user.user_id}l" href="{xen:link members, $user}">
<img src="{xen:helper avatar, $user, l, 'true'}" alt="{$user.username}" height="auto" width="150px" itemprop="photo" />
</a>{xen:helper userBanner, $user, 'wrapped'}
<!-- slot: message_user_info_avatar -->
</div>
</xen:hook>
<div class="extraUserInfo"><xen:if hascontent="true">
<xen:contentcheck>
<xen:hook name="message_user_info_extra" params="{xen:array 'user={$user}', 'isQuickReply={$isQuickReply}'}">
<xen:if is="@messageShowRegisterDate AND {$user.user_id}">
<dl class="pairsJustified">
<dt><i class="fa-calendar icon-large icon-fixed-width" style="padding-right:5px; font-size: 10px;"></i>
{xen:phrase joined}:</dt>
<dd>{xen:date $user.register_date}</dd>
</dl>
</xen:if>
<xen:if is="@messageShowMessageCount AND {$user.user_id}">
<dl class="pairsJustified">
<dt><i style="padding-right:7px;font-size: 10px;" class="fa-envelope-o icon-large icon-fixed-width"></i>{xen:phrase messages}:</dt>
<dd><a href="{xen:link search/member, '', 'user_id={$user.user_id}'}" class="concealed" rel="nofollow">{xen:number $user.message_count}</a></dd>
</dl>
</xen:if>
<xen:if is="@messageShowTotalLikes AND {$user.user_id}">
<dl class="pairsJustified">
<dt><i style="padding-right:7px;font-size: 10px;" class="icon-thumbs-up icon-large icon-fixed-width"></i>{xen:phrase likes_received}:</dt>
<dd>{xen:number $user.like_count}</dd>
</dl>
</xen:if>
<xen:if is="@messageShowTrophyPoints AND {$user.user_id}">
<dl class="pairsJustified">
<dt><i style="padding-right:7px;font-size: 10px" class="icon-trophy icon-large icon-fixed-width"></i>{xen:phrase trophy_points}:</dt>
<dd><a href="{xen:link 'members/trophies', $user}" class="OverlayTrigger concealed">{xen:number $user.trophy_points}</a></dd>
</dl>
</xen:if>
<xen:if is="@messageShowGender AND {$user.gender}">
<dl class="pairsJustified">
<dt>{xen:phrase gender}:</dt>
<dd itemprop="gender"><xen:if is="{$user.gender} == 'male'">{xen:phrase male}<xen:else />{xen:phrase female}</xen:if></dd>
</dl>
</xen:if>
<xen:if is="@messageShowOccupation AND {$user.occupation}">
<dl class="pairsJustified">
<dt>{xen:phrase occupation}:</dt>
<dd itemprop="role">{xen:string censor, $user.occupation}</dd>
</dl>
</xen:if>
<xen:if is="@messageShowLocation AND {$user.location}">
<dl class="pairsJustified">
<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>
<xen:if is="@messageShowHomepage AND {$user.homepage}">
<dl class="pairsJustified">
<dt>{xen:phrase home_page}:</dt>
<dd><a href="{xen:string censor, $user.homepage, '-'}" rel="nofollow" target="_blank" itemprop="url">{xen:string censor, $user.homepage}</a></dd>
</dl>
</xen:if>
</xen:hook>
<xen:if is="@messageShowCustomFields AND {$user.customFields}">
<xen:hook name="message_user_info_custom_fields" params="{xen:array 'user={$user}', 'isQuickReply={$isQuickReply}'}">
<xen:foreach loop="$userFieldsInfo" key="$fieldId" value="$fieldInfo">
<xen:if is="{$fieldInfo.viewable_message}">
<xen:if hascontent="true">
<dl class="pairsJustified userField_{$fieldId}">
<dt>{xen:helper userFieldTitle, $fieldId}:</dt>
<dd><xen:contentcheck>{xen:helper userFieldValue, $fieldInfo, $user, {$user.customFields.{$fieldId}}}</xen:contentcheck></dd>
</dl>
</xen:if>
</xen:if>
</xen:foreach>
</xen:hook>
</xen:if>
</xen:contentcheck>
</xen:if>
<xen:if is="{$visitor.is_admin}">
<center><i class="fa-bold icon-large icon-fixed-width" style="padding-right:5px; font-size: 10px;"></i><a href="admin.php?banning/users/{$post.username}.{$post.user_id}/add">{xen:phrase ban_user}</a><center>
</xen:if></div>
</xen:if>
</div>
</div>
Мне это необязательно. Это просто так, для красотыСтранно, можно глянуть на живом форуме (линк можно в ЛС)?
А ещё покажите содержимое шаблона message_user_info.
По коду, что Вы сбросили, индикатор должен работать.
Но всё же, код основательно изменён, и лучше попробовать прям в админке посмотреть шаблоны.Код:<xen:require css="message_user_info.css" /> <div class="messageUserInfo" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person"> <div class="messageUserBlock"> <center><xen:if is="!{$isQuickReply}"> <xen:hook name="message_user_info_text" params="{xen:array 'user={$user}', 'isQuickReply={$isQuickReply}'}"> <h3 class="userText"> <xen:username user="$user" itemprop="name" rich="true" /> <xen:if hascontent="true"><em class="userTitle" itemprop="title"><xen:contentcheck>{xen:helper userTitle, $user, 1, 1}</xen:contentcheck></em></xen:if> </center> <!-- slot: message_user_info_text --> </h3> </xen:hook> <xen:if is="{$user.isOnline}"><span class="Tooltip onlineMarker" title="{xen:phrase online_now}" data-offsetX="-22" data-offsetY="-8"></span> <xen:else /> <span class="Tooltip offlineMarker" title="Offline" data-offsetX="-10" data-offsetY="-8"></span> </xen:if> <xen:hook name="message_user_info_avatar" params="{xen:array 'user={$user}', 'isQuickReply={$isQuickReply}'}"> <div class="avatarHolder"> <span class="helper"></span> <a class="username avatar Av{$user.user_id}l" href="{xen:link members, $user}"> <img src="{xen:helper avatar, $user, l, 'true'}" alt="{$user.username}" height="auto" width="150px" itemprop="photo" /> </a>{xen:helper userBanner, $user, 'wrapped'} <!-- slot: message_user_info_avatar --> </div> </xen:hook> <div class="extraUserInfo"><xen:if hascontent="true"> <xen:contentcheck> <xen:hook name="message_user_info_extra" params="{xen:array 'user={$user}', 'isQuickReply={$isQuickReply}'}"> <xen:if is="@messageShowRegisterDate AND {$user.user_id}"> <dl class="pairsJustified"> <dt><i class="fa-calendar icon-large icon-fixed-width" style="padding-right:5px; font-size: 10px;"></i> {xen:phrase joined}:</dt> <dd>{xen:date $user.register_date}</dd> </dl> </xen:if> <xen:if is="@messageShowMessageCount AND {$user.user_id}"> <dl class="pairsJustified"> <dt><i style="padding-right:7px;font-size: 10px;" class="fa-envelope-o icon-large icon-fixed-width"></i>{xen:phrase messages}:</dt> <dd><a href="{xen:link search/member, '', 'user_id={$user.user_id}'}" class="concealed" rel="nofollow">{xen:number $user.message_count}</a></dd> </dl> </xen:if> <xen:if is="@messageShowTotalLikes AND {$user.user_id}"> <dl class="pairsJustified"> <dt><i style="padding-right:7px;font-size: 10px;" class="icon-thumbs-up icon-large icon-fixed-width"></i>{xen:phrase likes_received}:</dt> <dd>{xen:number $user.like_count}</dd> </dl> </xen:if> <xen:if is="@messageShowTrophyPoints AND {$user.user_id}"> <dl class="pairsJustified"> <dt><i style="padding-right:7px;font-size: 10px" class="icon-trophy icon-large icon-fixed-width"></i>{xen:phrase trophy_points}:</dt> <dd><a href="{xen:link 'members/trophies', $user}" class="OverlayTrigger concealed">{xen:number $user.trophy_points}</a></dd> </dl> </xen:if> <xen:if is="@messageShowGender AND {$user.gender}"> <dl class="pairsJustified"> <dt>{xen:phrase gender}:</dt> <dd itemprop="gender"><xen:if is="{$user.gender} == 'male'">{xen:phrase male}<xen:else />{xen:phrase female}</xen:if></dd> </dl> </xen:if> <xen:if is="@messageShowOccupation AND {$user.occupation}"> <dl class="pairsJustified"> <dt>{xen:phrase occupation}:</dt> <dd itemprop="role">{xen:string censor, $user.occupation}</dd> </dl> </xen:if> <xen:if is="@messageShowLocation AND {$user.location}"> <dl class="pairsJustified"> <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> <xen:if is="@messageShowHomepage AND {$user.homepage}"> <dl class="pairsJustified"> <dt>{xen:phrase home_page}:</dt> <dd><a href="{xen:string censor, $user.homepage, '-'}" rel="nofollow" target="_blank" itemprop="url">{xen:string censor, $user.homepage}</a></dd> </dl> </xen:if> </xen:hook> <xen:if is="@messageShowCustomFields AND {$user.customFields}"> <xen:hook name="message_user_info_custom_fields" params="{xen:array 'user={$user}', 'isQuickReply={$isQuickReply}'}"> <xen:foreach loop="$userFieldsInfo" key="$fieldId" value="$fieldInfo"> <xen:if is="{$fieldInfo.viewable_message}"> <xen:if hascontent="true"> <dl class="pairsJustified userField_{$fieldId}"> <dt>{xen:helper userFieldTitle, $fieldId}:</dt> <dd><xen:contentcheck>{xen:helper userFieldValue, $fieldInfo, $user, {$user.customFields.{$fieldId}}}</xen:contentcheck></dd> </dl> </xen:if> </xen:if> </xen:foreach> </xen:hook> </xen:if> </xen:contentcheck> </xen:if> <xen:if is="{$visitor.is_admin}"> <center><i class="fa-bold icon-large icon-fixed-width" style="padding-right:5px; font-size: 10px;"></i><a href="admin.php?banning/users/{$post.username}.{$post.user_id}/add">{xen:phrase ban_user}</a><center> </xen:if></div> </xen:if> </div> </div>
Так я ведь не знаю, какой там кодНу как убрали, так и возвратите. :-)
Я кажется удалил этот код. В каком шаблоне это вообще?Так убрать-то как-то умудрились, а теперь так же надо и вернуть. Мы тем-более не знаем, что Вы там натворили для этого. Оо
<xen:require css="quick_reply.css" />
<xen:require js="js/xenforo/discussion.js" />
<div class="quickReply message">
<xen:include template="message_user_info">
<xen:map from="$visitor" to="$user" />
<xen:set var="$isQuickReply">1</xen:set>
</xen:include>
Там у меня то же самое стоит, я скорее всего удалил и message_user_infoкажется знаю
пробуйте в шаблон quick_reply
после
вставитьКод:<xen:require css="quick_reply.css" /> <xen:require js="js/xenforo/discussion.js" /> <div class="quickReply message">
Код:<xen:include template="message_user_info"> <xen:map from="$visitor" to="$user" /> <xen:set var="$isQuickReply">1</xen:set> </xen:include>
Множество изменений и исправлений:
First of all, a huge apology for the delay. We of course don't generally take this long in between updates, but since 1.4.3 didn't require any template fixes that merging didn't resolve, we figured we'd spend all our focus on optimizing and improving the already powerful UI.X Framework. We realize that a lot of you have been waiting for work from us, upgrades, etc. But we set a goal for ourselves and we needed to reach it. I'd say we far exceeded that goal.
We also asked a few of you to help beta test this framework, which has now gained recognition from some of the largest XenForo installations around and it is a huge honor. So we needed to make sure that this worked on the largest of XenForo boards as clean and fast as possible, and I can honestly say we did just that. Thank you to the beta testers, and this release has passed their inspection.
In fact the largest XenForo board will be running UI.X in January.
So as usual I'm just going to regurgitate some of the focal points that we emphasized on, but naturally we fixed a lot of minor things as well, so if you have questions about any of those feel free to post it in the thread.
XenForo Media Gallery fixes including toolbar icon
Alignment of the quick reply editor in some areas, such as XMG and a few plugins should be resolved
We widened the main user dropdown menu so it looks a little cleaner now and less cramped
Moved the contents of uix_adStyler_variables to a style property (really this just fixes that outdated template issue some of you may have, just annoying I guess)
You can now set a height just for tablinks when navigation is sticky
You can now disable tablinks when navigation is sticky for a cleaner interface
We added a post pagination option, mainly useful when you have navigation sticky -- this allows you to jump to posts within a thread
We added a variable to allow you to collapse the sidebar at any viewport width, useful if your iPad or tablet landscape views are a bit cluttered. You can also always collapse the sidebar, useful if you never went a sidebar on any pages.
When the navigation small logo shows/hides we rerun XenForo's repsonsive nav functionality which should fix the visitor tabs and search from dropping under the navigation sometimes
Fixed the ordered list icon in the toolbar to be a numbered icon
Welcome block button has a min-width of 75% now, just looks cleaner on mobile and more like a button
Jump to bottom and jump to top JS has been improved
You can stack the jump to top and jump to bottom fixed icons now in case you didn't like them side by side in the last release
Node icons as glyphs no longer have that background issue
The fixed jump to top/button delayed hide setting is now fully functional -- it will get out of your way now if its not being used and you are not scrolling
The resource manager filter dropdown no longer collides with the tabs (this is a bug in XenForo but we added some code to fix it on UIX)
A new sticky navigation 'style' so to speak, which makes the sticky nav only work on scroll up which is more like how a lot of apps behave
Node collapse issue where node 11 would collapse node 111 for example has been fixed (finally, sorry)
iOS flickering issue
Major JS optimizations
As usual we do not recommend you upgrade live boards without doing a backup of your old UI.X (in case you modified it) and thoroughly testing on a demo board.
Our next primary focus is going to be fixing the couple RTL bugs and also the sticky nav offset internal links such as on reply.
в настройках стиля отключается.Посмотреть вложение 28070
В каком шаблоне изменить?
мне уже это сказал, но можешь сказать где именно? (а то не очень шарю только учусь)в настройках стиля отключается.
Настройки стиля,а потом в разделемне уже это сказал, но можешь сказать где именно? (а то не очень шарю только учусь)
Мы используем основные cookies для обеспечения работы этого сайта, а также дополнительные cookies для обеспечения максимального удобства пользователя.
Посмотрите дополнительную информацию и настройте свои предпочтения