XF 1.5 How can I have a help menu item link to another url instead of loading a help page?

RobinHood

Well-known member
I'd like to add an entry to the help pages, using the help pages tool.

But instead of it loading a page within the help pages section with more content, I'd like it to link elsewhere on the site. Kind of like a link forum, but for the help pages.

Is there a way to do this?
 
for the sidebar edit template help wrapper and add something like this below </xen:foreach> or wherever you want...

Code:
<li><a href="http://www.yourlink.com" class="{xen:if "{$selected} == 'cookies'", 'secondaryContent', 'primaryContent'}">Your Text</a></li>

for the main page edit help_index, you will see what i mean ;)
 
Top Bottom