- Автор темы
- #1
Новый вид Оповещений
Совместимость с XenForo:1.31.4
В админ панели переходим по вкладкам "Внешний вид" - "Поиска по шаблонам" и ищем шаблон: "Alert"
И заменяем все внутри на это:
Вот что получаем
Совместимость с XenForo:1.31.4
В админ панели переходим по вкладкам "Внешний вид" - "Поиска по шаблонам" и ищем шаблон: "Alert"
И заменяем все внутри на это:
Код:
<xen:if is="{$alert.new}">
<div style="background: #333; color: whitesmoke; padding: 5px; border-bottom: 3px solid green;">
<li class="Alert listItem{xen:if '{$alert.new}', ' new'} " id="alert{$alert.alert_id}" data-author="{$alert.user.username}">
<xen:avatar user="$alert.user" size="s" img="true" class="plainImage" />
<xen:username user="$user" itemprop="name" rich="true" />
<div class="listItemText">
<h3>{xen:raw $alert.template}</h3>
<xen:datetime time="$alert.event_date" class="muted time" /><xen:if is="{$alert.new}"><span class="newIcon"></span></xen:if>
</div>
</li>
</div>
<xen:else />
<div style="background: #222; color: whitesmoke; padding: 5px; border-bottom: 3px solid firebrick;" >
<li class="Alert listItem{xen:if '{$alert.new}', ' new'} " id="alert{$alert.alert_id}" data-author="{$alert.user.username}">
<xen:avatar user="$alert.user" size="s" img="true" class="plainImage" />
<xen:username user="$user" itemprop="name" rich="true" />
<div class="listItemText">
<h3>{xen:raw $alert.template}</h3>
<xen:datetime time="$alert.event_date" class="muted time" /><xen:if is="{$alert.new}"><span class="newIcon"></span></xen:if>
</div>
</li>
</div>
</xen:if>
Вот что получаем
Последнее редактирование: