10-15-2001, 10:00 PM
Elie]---------------
Description : |
---------------
This hack will permet you to choose if yes or no you want admin's posts are appearing in bold
--------------
Screenshot : |
--------------
http://eliescript.com.Free.fr/vbb/screenshot3.gif
http://eliescript.com.Free.fr/vbb/screenshot4.gif
---------------
Installation : |
---------------
Launch it in PHPmyAdmin :
---------------------------------------
INSERT INTO setting VALUES ( 'null', '8', 'Admin Post Is Appear In Bold', 'adminpostbold', '0', 'Do you want admin\'s posts are appearing in bold ?', 'yesno', '10');
In admin/function.php :
-----------------
<- Find
// global options
global $showdeficon,$showonline,$displayemails,$enablepms ,$allowsignatures,$wordwrap,$dateformat,$timeforma t,$logip,$replacewords,$postsperday,$avatarenabled ,$registereddateformat,$viewattachedimages;
-> Remplace with
// global options
global $showdeficon,$showonline,$displayemails,$enablepms ,$allowsignatures,$wordwrap,$dateformat,$timeforma t,$logip,$replacewords,$postsperday,$avatarenabled ,$registereddateformat,$viewattachedimages,$adminp ostbold;
<- Find
if (!$ignore[$post[userid]]) {
eval("\$retval = \"".gettemplate("postbit")."\";");
} else {
eval("\$retval = \"".gettemplate("postbit_ignore")."\";");
}
return $retval;
-> Add just before it
if(($adminpostbold==1) AND ($post[usergroupid]==6)) { $post[message]="<b>".$post[message]."</b>"; } else { $post[message]
="".$post[message].""; }
Now you have just to check if you want or no to affich admin's post in bold
---------------
My Opinion : |
---------------
It simple to see which posts are important :) Tant's all ...
Note : 8/10
Hack by Elie
Thanks to Zantan for his help
Thanks to Renaud etand is great job
And at all the staff of vBulletin-France (http://www.vbulletin-france.com)
Description : |
---------------
This hack will permet you to choose if yes or no you want admin's posts are appearing in bold
--------------
Screenshot : |
--------------
http://eliescript.com.Free.fr/vbb/screenshot3.gif
http://eliescript.com.Free.fr/vbb/screenshot4.gif
---------------
Installation : |
---------------
Launch it in PHPmyAdmin :
---------------------------------------
INSERT INTO setting VALUES ( 'null', '8', 'Admin Post Is Appear In Bold', 'adminpostbold', '0', 'Do you want admin\'s posts are appearing in bold ?', 'yesno', '10');
In admin/function.php :
-----------------
<- Find
// global options
global $showdeficon,$showonline,$displayemails,$enablepms ,$allowsignatures,$wordwrap,$dateformat,$timeforma t,$logip,$replacewords,$postsperday,$avatarenabled ,$registereddateformat,$viewattachedimages;
-> Remplace with
// global options
global $showdeficon,$showonline,$displayemails,$enablepms ,$allowsignatures,$wordwrap,$dateformat,$timeforma t,$logip,$replacewords,$postsperday,$avatarenabled ,$registereddateformat,$viewattachedimages,$adminp ostbold;
<- Find
if (!$ignore[$post[userid]]) {
eval("\$retval = \"".gettemplate("postbit")."\";");
} else {
eval("\$retval = \"".gettemplate("postbit_ignore")."\";");
}
return $retval;
-> Add just before it
if(($adminpostbold==1) AND ($post[usergroupid]==6)) { $post[message]="<b>".$post[message]."</b>"; } else { $post[message]
="".$post[message].""; }
Now you have just to check if you want or no to affich admin's post in bold
---------------
My Opinion : |
---------------
It simple to see which posts are important :) Tant's all ...
Note : 8/10
Hack by Elie
Thanks to Zantan for his help
Thanks to Renaud etand is great job
And at all the staff of vBulletin-France (http://www.vbulletin-france.com)