Offline status indicator - Chỉ thị trạng thái ngoại tuyến

PVS

Super Moderator
Thành viên BQT
Code hoặc hướng dẫn này được sử dụng trên phiên bản Xenforo cũ đã quá hạn sử dụng. Bạn hãy click để tìm bản mới hơn
Offline status indicator - Chỉ thị trạng thái ngoại tuyến

Screenshot_4.png

  • Trước tiên, cài đặt sửa đổi này!
    • Upload online-indicator_offline.png theo đường dẫn styles/default/xenforo/icons/
    • Vào template EXTRA.css, thêm:
      Mã:
      .messageUserBlock div.avatarHolder .offlineMarker {
      background: url("@imagePath/xenforo/icons/online-indicator_offline.png") no-repeat !important;
      position: absolute;
      left: 100px !important;
      top: 10px !important;
      width: 12px;
      height: 12px;
      }
      @media (max-width:480px) {
      .Responsive .messageUserBlock div.avatarHolder  .offlineMarker {
        left: 47px !important;
        top: 5px !important; }
      }
      .xengallery_media_view .offlineMarker, .quickReply .offlineMarker {
      display: none;
      }

  • Trong template message_user_info, thay thế:
Mã:
<xen:if is="{$user.isOnline}"><span class="Tooltip onlineMarker" title="{xen:phrase online_now}" data-offsetX="-22" data-offsetY="-8"></span></xen:if>

Bằng
Mã:
<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>

Chúc các bạn thành công.


Nguồn:xenforo.com​
 

Đính kèm

  • online-indicator_offline.png
    online-indicator_offline.png
    389 bytes · Lượt xem: 11
Back
Top