MyBB Community Forums

Full Version: Staff Page Not showing in Menu
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've installed the staff page and set the settings but nothing is showing up on forum index. Huh
^ it does not add to the index page. its contents are displayed through show team page [staff page plugin details]
So is there a way to add a link to the staff menu on the forum index?
The attached screenshot is from a clean install of 1.8.21 showing the index page. Notice the "Forum Team" link in the footer.
[attachment=42525]

The following code is the first part of the default footer template. Notice the line containing {$showteamlink}.
If you are using a custom theme, you'll need to edit the footer template to add that line. You should be able to locate the right place to insert the code. Look for the theme's css class for menu bottom links, although it may be specified differently than default.

<debugstuff>
	</div>
</div>
<div id="footer">
	<div class="upper">
		<div class="wrapper">
			{$lang_select}
			{$theme_select}
			<ul class="menu bottom_links">
				{$showteamlink}
				{$contact_us}
				<li><a href="{$mybb->settings['homeurl']}">{$mybb->settings['homename']}</a></li>
				<li><a href="#top">{$lang->bottomlinks_returntop}</a></li>
				<li><a href="<archive_url>">{$lang->bottomlinks_litemode}</a></li>
				<li><a href="{$mybb->settings['bburl']}/misc.php?action=markread{$post_code_string}">{$lang->bottomlinks_markread}</a></li>
				<li><a href="{$mybb->settings['bburl']}/misc.php?action=syndication">{$lang->bottomlinks_syndication}</a></li>
			</ul>
		</div>
	</div>

Sorry, I misunderstood. It's a plugin.
You'll need to find the footer and add a line similar to
<li><a href="{$mybb->settings['bburl']}/memberlist.php?action=staff">Staff Page</a></li>

Or you can enter that line in the footer_showteamlink template, replacing what is there by default.
(2020-02-02, 12:30 AM)HLFadmin Wrote: [ -> ]Sorry, I misunderstood. It's a plugin.
You'll need to find the footer and add a line similar to
<li><a href="{$mybb->settings['bburl']}/memberlist.php?action=staff">Staff Page</a></li>

Or you can enter that line in the footer_showteamlink template, replacing what is there by default.

This is the correct answer.

If you want to use it in header, then another option is to use header_welcomeblock_moderator template.