MyBB Community Forums

Full Version: Change Help Link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I change /misc.php?action=help to /misc.php?action=guidebook, as well as making sure these links change too "/misc.php?action=help&hid=13".

Please and thank you!

Bump! Smile
Bump!
Bump.
It depends which link exactly you want to change. The link in the header is defined in the "header" template and the one in the footer in the "footer" template. (ACP -> Themes -> Templates -> *Your Theme*)

The link is usually defined like this:
<a href="{$mybb->settings['bburl']}/misc.php?action=help"
which you'd need to change to:
<a href="{$mybb->settings['bburl']}/misc.php?action=guidebook"

I'm not sure what exactly you mean by the second part of your question though. Do you want to redirect "misc.php?action=guidebook" back to "misc.php?action=help&hid=13"?