MyBB Community Forums

Full Version: Toplinks Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi..... i'm trying to add the staff application toplink to the top of the forum but i'm having trouble adding it to the toplinks.....

heres the codes i use.....

<li><a href="{$mybb->settings['bburl']}/staffapp.php" action=staffapplications"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/icn_watch3_share_over_22x18.png" alt="" />Staff Applications</a></li>

but when i click on it on the tolinks... it says... "This file cannot be accessed directly."

then i tried.....

<li><a href="{$mybb->settings['bburl']}/inc/plugins/staffapp.php" action=staffapplications"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/icn_watch3_share_over_22x18.png" alt="" />Staff Applications</a></li>

it still didn't work..... Sad

anything i'm doing wrong?
hockeyhero Wrote:hi..... i'm trying to add the staff application toplink to the top of the forum but i'm having trouble adding it to the toplinks.....

heres the codes i use.....

<li><a href="{$mybb->settings['bburl']}/staffapp.php" action=staffapplications"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/icn_watch3_share_over_22x18.png" alt="" />Staff Applications</a></li>

but when i click on it on the tolinks... it says... "This file cannot be accessed directly."

then i tried.....

<li><a href="{$mybb->settings['bburl']}/inc/plugins/staffapp.php" action=staffapplications"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/icn_watch3_share_over_22x18.png" alt="" />Staff Applications</a></li>

it still didn't work..... Sad

anything i'm doing wrong?

Try this:

<li><a href="{$mybb->settings['bburl']}/misc.php?action=staffapp"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/icn_watch3_share_over_22x18.png" alt="" />Staff Applications</a></li>
DanEthical Wrote:
hockeyhero Wrote:hi..... i'm trying to add the staff application toplink to the top of the forum but i'm having trouble adding it to the toplinks.....

heres the codes i use.....

<li><a href="{$mybb->settings['bburl']}/staffapp.php" action=staffapplications"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/icn_watch3_share_over_22x18.png" alt="" />Staff Applications</a></li>

but when i click on it on the tolinks... it says... "This file cannot be accessed directly."

then i tried.....

<li><a href="{$mybb->settings['bburl']}/inc/plugins/staffapp.php" action=staffapplications"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/icn_watch3_share_over_22x18.png" alt="" />Staff Applications</a></li>

it still didn't work..... Sad

anything i'm doing wrong?

Try this:

<li><a href="{$mybb->settings['bburl']}/misc.php?action=staffapp"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/icn_watch3_share_over_22x18.png" alt="" />Staff Applications</a></li>

worked like a charm....thanks very much....Smile
No problem. Glad it worked for you. Smile

I accept Giro Toungue
- You should activate the plugin first in your ACP, and then configure the settings in the Board Settings> Change -> Staff Applications -> (Make sure to set it to ON)
- You can't access this plugin directly; but you should put the code like this in your header template:

	<li> <a href="http://your-site.com/yourforum/misc.php?action=staffapp"><img src="http://your-site.com/yourforum/images/toplinks/icn_watch3_share_over_22x18.png" width="30" height="13" border="0">Staff Applications</a></li>

If you still have trouble, please pm me your url and I'll write the exact code to insert for you.

Regards