Cmely Member Feb 27, 2015 #1 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
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
Amaury Well-known member Feb 27, 2015 #2 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. Upvote 0 Downvote
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.
Cmely Member Feb 27, 2015 #3 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 ? Upvote 0 Downvote
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 ?
Amaury Well-known member Feb 27, 2015 #4 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"> Upvote 0 Downvote
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">
Cmely Member Feb 27, 2015 #5 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. Upvote 0 Downvote
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.