Thêm liên kết Recent Posts vào Navigation Bar

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
Thêm liên kết Recent Posts vào Navigation Bar

Vào template navigation tìm:
Mã:
        <li><a href="{xen:link 'watched/threads'}">{xen:phrase watched_threads}</a></li>
    </xen:if>
    <li><a href="{xen:link 'find-new/posts'}" rel="nofollow">{xen:if $visitor.user_id, {xen:phrase new_posts}, {xen:phrase recent_posts}}</a></li>
</xen:hook>

Thay bằng:
Mã:
        <li><a href="{xen:link 'watched/threads'}">{xen:phrase watched_threads}</a></li>
    </xen:if>
    <xen:if is="{$visitor.user_id}">
        <li><a href="{xen:link find-new/posts, '', 'recent=1'}" rel="nofollow">{xen:phrase recent_posts}</a></li>
    </xen:if>
    <li><a href="{xen:link 'find-new/posts'}" rel="nofollow">{xen:if $visitor.user_id, {xen:phrase new_posts}, {xen:phrase recent_posts}}</a></li>
</xen:hook>

before.png

Trước

after.png

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


Nguồn: xenforo.com​
 
Chào bạn !
Mình muốn đưa Recent Post lên Navigation Tab thì phải sửa code như thế nào nhỉ, tks bạn ! :)
 
Back
Top