• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn rút gọn chuyên mục style mobile xenforo

Admin

Well-Known Member
Staff member
Administrator
Bình thường, hầu hết các style share đều liệt kê các sub forum (chuyên mục con) ra index

Nhiều bạn thích ngắn gọn nên mình sẽ hướng dẫn để chỉ hiện chuyên mục mẹ (category) ra index

Vào node_category_level_1 của style mobile

tìm

Code:
<xen:if is="{$renderedChildren}">           <ol class="nodeList">
            <xen:foreach loop="$renderedChildren" value="$child">{xen:raw $child}</xen:foreach>
        </ol> 
    </xen:if>

xóa nó đi

Lưu ý khi rút gọn chuyên mục: Vào Option -> Node & Forum list rồi check cái ô cuối cùng

Và demo
tuoitrevnbiz30122012.png

Đối với những ai thích show cả chuyên mục con thì làm ngược lại nhé

tìm
Code:
<div class="nodeInfo categoryNodeInfo categoryStrip">
    
        <div class="categoryText">
            <h3>&bull; *<a href="{xen:link categories, $category}"><span style="color:#425b89;">{$category.title}</span></a></h3>
            <xen:if is="{$category.description}"><blockquote class="nodeDescription baseHtml">{xen:raw $category.description}</blockquote></xen:if>
        </div>
        
    </div>

thêm vào bên dưới:
Code:
<xen:if is="{$renderedChildren}">   
        <ol class="nodeList">
            <xen:foreach loop="$renderedChildren" value="$child">{xen:raw $child}</xen:foreach>
        </ol> 
    </xen:if>
 

Facebook Comments

New posts New threads New resources

Back
Top