Help Đổi vị trí giới thiệu hồ sơ cho xenforo 2

Vào template member_view cắt đoạn code:
Mã:
<a href="{{ link('members/about', $user) }}"
                    class="tabs-tab is-active"
                    id="about"
                    role="tab">{{ phrase('about') }}</a>
di chuyển lên trên, ngay bên dưới <span class="hScroller-scroll">

Tiếp theo xóa is-active trong đoạn code:
Mã:
<xf:if is="$user.canViewPostsOnProfile()">
                    <a href="{{ link('members', $user) }}"
                        class="tabs-tab is-active"
                        role="tab"
                        aria-controls="profile-posts">{{ phrase('profile_posts') }}</a>
                </xf:if>
 
Back
Top