How to add new quick links under help ..?

BlackMuddler

Active member
Hi ..

I want to add further quick links under help to 2 other static pages with som privacy and terms info.

How to do that - is that possible for a non-programmer?

Thanks in advance...

BlackMuddler
 
You need to edit 2 templates: help_index and help_wrapper.

Here is an example of adding a link to a page called Staff:

help_index
Code:
<dl>
    <dt><a href="{xen:link pages/staff}">{xen:phrase cta_staff}</a></dt>
    <dd>{xen:phrase cta_staff_description}</dd>
</dl>


help_wrapper
Code:
<li><a href="{xen:link pages/staff}" class="primaryContent">{xen:phrase cta_staff}</a></li>


If you also want the link to appear on the navigation bar then you need to edit the navigation template:
Code:
<li><a href="{xen:link pages/staff}">{xen:phrase cta_staff}</a></li>


You will note that new phrases are also required so you will need to create those, renaming them accordingly for your needs.
 
Top Bottom