• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

Separate Sticky and Normal Threads 2

cobra1162

Active member
This modified template is used to separate the important topic of normal


Go into your admincp style template

Search template "thread_list"
Find:

Code:
<xen:foreach loop="$stickyThreads" value="$thread">
            <xen:include template="thread_list_item" />
        </xen:foreach>

ADD before:

Code:
<xen:if is="{$stickyThreads}">
            <li class="sectionHeaders">importants posts</li>
                </xen:if>

And find:


Code:
<xen:foreach loop="$stickyThreads" value="$thread">
            <xen:include template="thread_list_item" />
        </xen:foreach>

Add below:

Code:
<xen:if is="{$stickyThreads}">
            <li class="sectionHeaders">Normal Posts</li>
                </xen:if>

French support will be on: http://xenfrench.com/forum/index.php
un support français se fera sur : http://xenfrench.com/forum/index.php

important.webp
 
Top Bottom