MyBB Community Forums

Full Version: Display Member list
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm new to this and have just set up a forum for a new basketball team.
I can't see how I can get a link to either the member list or the calendar on the home page.
http://winterbournebb.co.uk/mybb/index.php
I may be missing something very basic here.
Any help would be appreciated.

You can log in with the following details
User: 'Test'
password; 'password'
Seems like you removed the links or there not present in the theme. The links are:

http://winterbournebb.co.uk/mybb/memberlist.php and http://winterbournebb.co.uk/mybb/calandar.php
(2010-07-13, 10:56 PM)Bob Jansen Wrote: [ -> ]Seems like you removed the links or there not present in the theme. The links are:

http://winterbournebb.co.uk/mybb/memberlist.php and http://winterbournebb.co.uk/mybb/calandar.php

Thanks
Where do they normally appear on the page and how do I reinstate them. (not used to php and so I'm not sure how to insert the code)
they appear in the header?
You would have to have a look at your default template in the header and you will see what is missing as in the tabs.
header_welcomeblock_guest and header_welcomeblock_member for your theme. Copy the current links and edit the text and URLs or post the templates here if you need more help.
Struggling a bit here.
This is header_welcomeblock_member
If you could show me where to post the links that would be great and then I can do the others
Thanks

<table border="0" cellspacing="$theme[borderwidth]" cellpadding="4" class="tborder">
<tr>
<td class="trow1" width="100%"><navigation></td>
<td class="trow2" style="font-size:11px; white-space:nowrap">
{$lang->welcome_back}<br />
<a href="{$mybb->settings['bburl']}/private.php">{$lang->welcome_pms}</a> {$lang->welcome_pms_usage}
</td>
</tr>
<tr>
<td colspan="2" style="padding:0">
<table border="0" cellspacing="0" cellpadding="0" class="thead_bottom">
<tr align="center" class="tfoot" style="background-image:url($theme[imgdir]/thead.gif);">
<td class="welcome_bottom"><a href="{$mybb->settings['bburl']}/usercp.php">{$lang->welcome_usercp}</a></td>
{$admincplink}
<td class="welcome_bottom"><a href="{$mybb->settings['bburl']}/search.php?action=getnew">{$lang->welcome_newposts}</a></td>
<td class="welcome_bottom"><a href="{$mybb->settings['bburl']}/search.php?action=getdaily">{$lang->welcome_todaysposts}</a></td>
<td class="welcome_bottom"><a href="$settings[bburl]/search.php" id="searchlink" rel="subcontent">{$lang->toplinks_search} <img src="images/Webvolution/menu_open.gif"/></a></td>
<td class="welcome_bottom"><a href="{$mybb->settings['bburl']}/member.php?action=logout&amp;logoutkey={$mybb->user['logoutkey']}">{$lang->welcome_logout}</a></td>
</tr>
</table>
</td>
</tr>
</table>

<DIV id="subcontent" style="position:absolute; visibility: hidden; border: 6px solid #CCC; background-color: white; width: 220px; padding: 8px;">

<form method="post" action="$settings[bburl]/search.php"><input type="hidden" name="action" value="do_search" /><input type="hidden" name="postthread" value="1" /><input type="hidden" name="forums" value="all" /><input type="hidden" name="showresults" value="threads" /><input type="text" name="keywords" value="" /><input type="submit" class="button" name="submit" value="Find" /></form>
<br />
<a href="search.php">Advanced Search</a>


</DIV>

<script type="text/javascript">
//Call dropdowncontent.init("anchorID", "positionString", glideduration, "revealBehavior") at the end of the page:

dropdowncontent.init("searchlink", "left-bottom", 900, "onclick")
dropdowncontent.init("contentlink", "right-top", 900, "click")

</script>
Well where do you want it first? You haven't told us that. You can plop the code wherever you please. Trial and error is the fastest in this case.
This is the code you'd want to add:

<td class="welcome_bottom"><a href="{$mybb->settings['bburl']}/calendar.php">{$lang->toplinks_calendar}</a></td>
<td class="welcome_bottom"><a href="{$mybb->settings['bburl']}/memberlist.php">{$lang->toplinks_memberlist}</a></td>

Put that after {$admincplink} or something.
Thanks, I'll play around with that.