Открываем шаблон поста: forums > front > topics > postContainer
Найти:
<h3 class='ipsType_sectionHead cAuthorPane_author ipsType_blendLinks ipsType_break'>
Добавить после:
{{if $comment->author()->isOnline()}}<span class="ipsOnlineStatus_online" data-ipsTooltip title="{$comment->author()->name} в сети">On</span>{{else}}<span class="ipsOnlineStatus_offline" data-ipsTooltip title="{$comment->author()->name} не в сети">Off</span>{{endif}}
Теперь в custom.css:
.ipsComment_author .ipsOnlineStatus_online,
.ipsComment_author .ipsOnlineStatus_offline {
background: #7aa984;
color: #fff;
padding: 2px 5px;
font-size: 11px;
border-radius: 3px;
position: absolute;
left: 6px;
top: 6px;
}
.ipsComment_author .ipsOnlineStatus_offline {
background:#ebeff3;
color:#788b9c;
}
Recommended Comments
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.