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 :)
 
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.
 
Back
Top Bottom