vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Admin Specific Font Color (https://vborg.vbsupport.ru/showthread.php?t=73271)

docjay 12-24-2004 03:21 PM

Admin Specific Font Color
 
I have searched this site for 2 days trying to find this, but havent had any luck. What im looking for is this, So that when an Admin posts, his font will automatically appair a different font color then the default forum font color. I have found a couple of hacks here that allow everyone to change their font color, but not one to just allow a specific usergroup. Can this be done?

docjay 12-27-2004 10:04 PM

No ideas from anyone?

SVTBlackLight01 12-28-2004 11:38 AM

You can do this by creating a new class and then making this change to your postbit templates.

replace
Code:

<!-- message -->
<div>$post[message]</div>
<!-- / message -->

with
Code:

<!-- message -->
<if condition="is_member_of($post, 6)">
<div class="adminclass">$post[message]</div>
<else />
<div>$post[message]</div>
</if>
<!-- / message -->


docjay 12-30-2004 12:01 AM

Thank you so much, it took me a lil bit to figure out where to add the "class" to, but I did and its working great,

SVTBlackLight01 12-30-2004 12:44 AM

No problem. Great to hear you got it working! :)

docjay 02-26-2005 02:09 PM

Well I went an added a couple more Admin usergroups, how would I get them to also appear in a font specific color, this worked great on just one usergroup, how would I add 3 more to it?

docjay 02-27-2005 03:47 PM

Any ideas anyone?

docjay 03-02-2005 04:35 PM

Still trying to get this to work, but it is still not working for me for the other usergroups, any ideas from anyone would be great.

docjay 03-03-2005 06:43 PM

Well after doing alot of searches on some different forums, I found a bit of a modification for what I needed to do, so I figured I would share with people in case they are looking to do the same thing.


I just added a few "or" commands I guess they would be called and it works great now. This is what I did.


Code:

<if condition="is_member_of($post,6)or is_member_of($post,24)or is_member_of($post,25)or is_member_of($post,26)"><div class="adminclass">$post[message]</div>

magnus 03-04-2005 12:08 PM

Quote:

Originally Posted by docjay
Well after doing alot of searches on some different forums, I found a bit of a modification for what I needed to do, so I figured I would share with people in case they are looking to do the same thing.


I just added a few "or" commands I guess they would be called and it works great now. This is what I did.


Code:

<if condition="is_member_of($post,6)or is_member_of($post,24)or is_member_of($post,25)or is_member_of($post,26)"><div class="adminclass">$post[message]</div>

You can simplify the process by installing the is_member_of improvement modification by merk. This will allow you to specify multiple usergroupid's in the same is_member_of() statement.

ie:
PHP Code:

<if condition="is_member_of($post, 6, 24, 25, 26)">
    <
div class="adminclass">$post[message]</div



All times are GMT. The time now is 06:59 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01922 seconds
  • Memory Usage 1,732KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (1)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete