View Full Version : Looking for a hack that..........
lfree0ab
07-26-2002, 02:23 PM
I'm looking for a hack so that when a certain user or user group posts a message the color scheme for their reply is different to the rest of the board. I am wanting to make the admins of my website stand out more in topics. Anyone know of any hacks that will solve this??
-luke
Xenon
07-26-2002, 03:21 PM
easiest way:
open admin/functions.php
find in getpostbit section:
eval("\$retval = \"".gettemplate("postbit")."\";");
replace it with:
if($post[usergroupid]!=6) {
eval("\$retval = \"".gettemplate("postbit")."\";");
} else {
eval("\$retval = \"".gettemplate("adminpostbit")."\";");
}
then create a template called adminpostbit and make a desing you want to have...
you should copy the original postbit into it and change it afterwards... would be easier
lfree0ab
07-29-2002, 09:44 AM
Wikid nice one, that works fine. Cheerz
-luke
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.