The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Comments |
#62
|
|||
|
|||
First, is there any way to add email under the pm button? Secondly the Location field is messed up if a user doesn't have a Location... Shouldnt there be a divider between it and the contact info (make a name for that last field)...??? Lastly, shoulnt there also be a divider between online and username? And call the first field online? Just thought it would be better that way! Thanks!
|
#63
|
|||
|
|||
this is a nice hack mate, but i have a problem with it
once you have made somone a mod and then removed there mod and set the permission back to a standed account, they still show on the list. It maybe just me but as anyone else had this ? |
#64
|
|||
|
|||
Quote:
|
#65
|
|||
|
|||
Quote:
can Anyone help me ? |
#66
|
||||
|
||||
Works great! Thanks a lot. I'd like to change part of it slightly, instead of Super Moderators I would like to list all the members in another usergroup.
I've managed to do this, I looked up the usergroup ID of the group I want to display, and used it in place of Super Moderators. However I still get the supermoderators header title for the table . I've read through the code and concluded that it must be bringing the title through in a global variable? (please note my inability to unerstand php - but my ability to learn? ) I'd also like to be able to show multiple user_id's in where the supermoderators list is - could anyone point me in the right direction please? Thanks |
#67
|
|||
|
|||
Quote:
....................can Anyone help me ? |
#68
|
||||
|
||||
hi boys I have in this hack in :
Warning: Variable passed to each() is not an array or object vb/showmods.php on line 110 can any one help me ....!!!!!!! |
#69
|
||||
|
||||
Quote:
The install script included has all the data regarding layout, table title (usergroup titles) etc. This can be edited to change the names, however I wans't sure of the routine to actually grab this using the userid from the mySQL table. Secondly, including other groups in the listings can be done by editing the showmods source as follows: At the top where the usergroups are defined, such as: Code:
$supermod_usergroup = 5; Code:
$myother_usergroup = 10; $alsomyother_usergroup = 9; where: Code:
WHERE user.usergroupid IN($admin_usergroup,$supermod_usergroup) Code:
WHERE user.usergroupid IN($admin_usergroup,$supermod_usergroup,$myother_usergroup,$alsomyother_usergroup) Code:
while ($user = $DB_site->fetch_array($users)) { if ($user[usergroupid] == $admin_usergroup) { if (($admincount++ % 2) == 0) $backcolor = "#EFEFEF"; else $backcolor = "#DEDEDE"; douserinfo(); eval("\$adminbits .= \"".gettemplate("showmods_adminbit")."\";"); } else { if (($smodcount++ % 2) == 0) $backcolor = "#EFEFEF"; else $backcolor = "#DEDEDE"; douserinfo(); eval("\$supermodbits .= \"".gettemplate("showmods_adminbit")."\";"); } } Code:
while ($user = $DB_site->fetch_array($users)) { if ($user[usergroupid] == $admin_usergroup) { if (($admincount++ % 2) == 0) $backcolor = "#EFEFEF"; else $backcolor = "#DEDEDE"; douserinfo(); eval("\$adminbits .= \"".gettemplate("showmods_adminbit")."\";"); } else if ($user[usergroupid] == $myother_usergroup) { if (($smodcount++ % 2) == 0) $backcolor = "#EFEFEF"; else $backcolor = "#DEDEDE"; douserinfo(); eval("\$supermodbits .= \"".gettemplate("showmods_adminbit")."\";"); } else if ($user[usergroupid] == $alsomyother_usergroup) { if (($smodcount++ % 2) == 0) $backcolor = "#EFEFEF"; else $backcolor = "#DEDEDE"; douserinfo(); eval("\$supermodbits .= \"".gettemplate("showmods_adminbit")."\";"); } else { if (($smodcount++ % 2) == 0) $backcolor = "#EFEFEF"; else $backcolor = "#DEDEDE"; douserinfo(); eval("\$supermodbits .= \"".gettemplate("showmods_adminbit")."\";"); } } |
#70
|
||||
|
||||
no body can't help me
so bad |
#71
|
|||
|
|||
sorry-im a newbie
everythings in the right place-but how EXACTLY do i link to that php file? |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|