- Tham gia
- 28/02/2015
- Bài viết
- 16,203
- Được Like
- 12,547
Status indicator online or offline - Chỉ thị trạng thái online hoặc offline cho XenForo 2
Vào template message_macros tìm:
Thêm đoạn code sau vào phía trước:
Sau đó vào template EXTRA.less và thêm đoạn code sau:
Chúc các bạn thành công.
Vào template message_macros tìm:
Mã:
<span class="message-userArrow"></span>
Thêm đoạn code sau vào phía trước:
Mã:
<xf:if is="$user.isOnline()">
<div class="onlineON">Online</span></div>
<xf:else />
<div class="offlineOFF">Offline</span></div>
</xf:if>
Sau đó vào template EXTRA.less và thêm đoạn code sau:
Mã:
/*online - offline*/
.onlineON{
background: #32CD32;
padding: 5px;
text-align: center;
border-radius: 0 0 5px 5px;
margin-top: 5px;
}
.offlineOFF{
background: #ff0000;
padding: 5px;
text-align: center;
border-radius: 0 0 5px 5px;
margin-top: 5px;
}
Nguồn: xenforo.com