XF 1.4 Change help topics order ?

Cmely

Member
Is it possible to change the help topics order ? including the default ones and the admin created ones ?
And if yes, how?

thank you in advance for your help :)
 
For your first question, edit the help_index template; for your second question, the order is determined by what you put in the Display Order field.
 
Thank you Maru :)
This is almost what I need: how can I display the admin created help topics first and change the links in the left panes accordingly ?

0079.webp
 
Move this:

Code:
    <xen:hook name="help_index_extra" />

    <xen:foreach loop="$pages" value="$page">
        <dl>
            <dt><a href="{xen:link help, $page}">{$page.title}</a></dt>
            <dd>{$page.description}</dd>
        </dl>
    </xen:foreach>

Below this:

Code:
<div class="baseHtml">
 
Yes, this is what I've done, but this change only the right pane order. The index (on the left) stay in the previous order.
The picture attached in my previous post show the result of this move.
 
Top Bottom