MyBB Community Forums

Full Version: [Release] OptionList for moderators
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi,

I'm sending my new release that does this: http://ketto.altervista.org/forum/index.php
You can view that the browser redirects to profile page of moderator Big Grin

You must follow only 5 little steps

1)
In forumbit_depth1_cat edit
<td class="thead" colspan="5">  
with
<td class="thead" colspan="6">

2)
Add after
<td class="tcat" width="200" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>  

this
<td class="tcat" width="200" align="center"><span class="smalltext"><strong>Moderators</strong></span></td>  

3)
In Ungrouped Templates > headerinclude insert this
function redirect( optionValue ) {
var uid;
var address;
uid = optionValue
address = "member.php?action=profile&uid=";
location.href = address+uid;
}

after
// -->

4)
In forumbit_depth2_forum insert
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap"><form>
<select name="test" onchange="redirect(this.value);">
<option value="" selected>Moderators</option>
{$moderators}
</select>
</form> </td> 

after
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>  

5)
Modify file ./inc/functions_forumlist.php inserting
$moderators .= "<option value=\"".get_profile_link($moderator['uid'])."\">".htmlspecialchars_uni($moderator['username'])."</option>";  
instaed of
$moderators .= "<br /><a href=\"".get_profile_link($moderator['uid'])."\">".htmlspecialchars_uni($moderator['username'])."</a>";  

Byeeeee
ammm a screenshoot please
Screenshots...
look at his forum, you will see it.
That's very good

Thanks ketto
Eh, kinda messy.
Oh!

I see Smile

Nice detail but whats the purpouse?
(2009-07-04, 01:21 AM)rafaweb Wrote: [ -> ]Oh!

I see Smile

Nice detail but whats the purpouse?

Quite self explanatory though..

'To use Mod Options right from the index'
(2009-07-04, 06:35 AM)ghazal Wrote: [ -> ]
(2009-07-04, 01:21 AM)rafaweb Wrote: [ -> ]Oh!

I see Smile

Nice detail but whats the purpouse?

Quite self explanatory though..

'To use Mod Options right from the index'

And when you click on a moderator you will redirect to his profile.
It looks nice, I like it.
Pages: 1 2