vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Forum Home Enhancements - Usergroup Color Bar Legend (https://vborg.vbsupport.ru/showthread.php?t=194823)

iyama 02-23-2009 12:20 PM

Works good on 3.8.1 Thnx coder :)

trilogy33 02-23-2009 12:40 PM

Again all fine here on 3.8.1. Many thanks :)

GeorgeB85 02-23-2009 01:53 PM

Works great, thanks!

Christian911 02-24-2009 09:26 AM

thanks great job - mark as installed

GeorgeB85 02-25-2009 02:32 AM

This is working great. Thanks

khawaji 02-25-2009 03:00 AM

thanks i was looking for it

mradlin 02-28-2009 07:00 PM

Is there a way to include the today's birthdays and forum statistics at the bottom also?

bryanb 03-04-2009 02:16 PM

good to go on my site :D Thanks!

alfieuk 03-23-2009 03:23 AM

Quote:

Originally Posted by Howell (Post 1747237)
Do you have colors specified for each of your Usergroups??

If not then you need to set it in the field 'Username HTML Markup'

Have a quick read of the vBulletin's documentation. ;)

http://www.vbulletin.com/docs/html/usergroup_add

A quick example...

opening field (left box) - <span style="color: green;">
closing field (right box) - </span>

This would set a members username of that Usergroup to show as green. :)

Thanks for that! :up:

Cees 03-24-2009 08:21 PM

Works great.

Just a question. Im searching for a piece that if you click on a usergroup, a list appears with everybody in that group. (a beginning coder :o)

darknusens 03-30-2009 09:27 PM

I'm facing a problem. A lot of colors are not detected in the legend like for example dark blue, Why is that and what colors can I choose?

mrtroybaker 03-30-2009 09:45 PM

Quote:

Originally Posted by Howell (Post 1726533)
I did this by changing this mods plugin

Go to > AdminCP > Plugin & Products > Plugin Manager > Product : Usergroup Color Bar > Usergroups color bar > Edit > Plugin PHP Code

And replace ALL with the following...

Code:

if (THIS_SCRIPT == "index" and $vbulletin->options['ugcb_onoff'])
{
$activeusers2 .= '<br />';
$userbuls = split(',', $vbulletin->options['sirala']);
foreach($userbuls AS $userbul) {

$activeusers2 .= $vbulletin->usergroupcache["$userbul"]['opentag'] . '? '.$vbulletin->usergroupcache["$userbul"]['title'] . $vbulletin->usergroupcache["$userbul"]['closetag'].' ';
}
$activeusers = $activeusers .'<br />'. $activeusers2;
}

Mine now looks like this.....
https://vborg.vbsupport.ru/external/2010/01/21.jpg


Thank you. Worked Great!!!

duditas 04-01-2009 02:33 AM

Thank you so much :)

Dollarsign 04-16-2009 10:37 PM

installed and working as expected :D

nomoreturn 04-17-2009 02:03 AM

thanks installed and works good

darknusens 04-17-2009 04:57 PM

Quote:

Originally Posted by darknusens (Post 1780641)
I'm facing a problem. A lot of colors are not detected in the legend like for example dark blue, Why is that and what colors can I choose?

Bump

Smitty 04-17-2009 05:47 PM

I don't know what the scoop is, but I manually moved mine to under the list of users online and that solved issues I had with certain font attributes not working. I hadn't thought much about the fonts aspects, because it was 'close', but I didn't like the location. After I moved it I noticed all the user groups showed up as they should with the correct font attributes (colors, bold, italics, etc.) that I have set for each user group.

marshal_ramdev 04-17-2009 06:35 PM

thanks ..

trickfly 04-17-2009 08:22 PM

didn't work on my forum:

www.symbiangalaxy.org

please help!

Cees 04-18-2009 05:22 AM

Quote:

Originally Posted by trickfly (Post 1793523)
didn't work on my forum:

www.symbiangalaxy.org

please help!

I looked on youre site an i dont see it. What is exact youre problem??

trickfly 04-18-2009 05:36 PM

Once installed, the usergroup description part dosent show on the who's online section at the bottom, can anyone help ?

www.symbiangalaxy.org

Thanks

FernandoFG 04-23-2009 06:59 AM

Quote:

Originally Posted by darknusens (Post 1780641)
I'm facing a problem. A lot of colors are not detected in the legend like for example dark blue, Why is that and what colors can I choose?

Re-Bump!

ouch 04-23-2009 12:43 PM

Nice mod, works a treat.....thankyou.

chuckrobbie 04-26-2009 10:47 AM

I see that many people are asking for help here and none given!
Oh dear, I really wanted a mod like this...guess uninstall is the key!

WHNChris 04-26-2009 05:12 PM

I have just added this to my forums and it is in perfect working order :). Thank you for this modification.

Regards,
Chris.

hinomaru 05-02-2009 02:25 AM

thx for this mod...it's working

solidstate 05-02-2009 01:14 PM

cool just installed.

trickfly 05-02-2009 07:38 PM

Quote:

Originally Posted by trickfly (Post 1794036)
Once installed, the usergroup description part dosent show on the who's online section at the bottom, can anyone help ?

www.symbiangalaxy.org

Thanks

Please can someone help!!

tspaetten 05-04-2009 11:55 AM

This is not working the bar is just black now. I think there is a bug somewhere. :confused:

trickfly 05-08-2009 12:23 AM

worked look here : www.symbiangalaxy.org

kakers 05-10-2009 12:25 PM

Why it don't shows users in bold ? I have edited user markup in bold it shows like another users, not in bold..

hinomaru 05-11-2009 09:28 AM

Quote:

Originally Posted by kakers (Post 1808002)
Why it don't shows users in bold ? I have edited user markup in bold it shows like another users, not in bold..

try use format like this example :

<span style="font-weight: bold;"><span style="color: red;"> </span></span>

ShadowStalker 06-14-2009 12:56 AM

Quote:

Originally Posted by Howell (Post 1726533)
I did this by changing this mods plugin

Go to > AdminCP > Plugin & Products > Plugin Manager > Product : Usergroup Color Bar > Usergroups color bar > Edit > Plugin PHP Code

And replace ALL with the following...

Code:

if (THIS_SCRIPT == "index" and $vbulletin->options['ugcb_onoff'])
{
$activeusers2 .= '<br />';
$userbuls = split(',', $vbulletin->options['sirala']);
foreach($userbuls AS $userbul) {

$activeusers2 .= $vbulletin->usergroupcache["$userbul"]['opentag'] . '? '.$vbulletin->usergroupcache["$userbul"]['title'] . $vbulletin->usergroupcache["$userbul"]['closetag'].' ';
}
$activeusers = $activeusers .'<br />'. $activeusers2;
}

Mine now looks like this.....
https://vborg.vbsupport.ru/external/2010/01/21.jpg

Thanks for posting the code to switch that. Makes a huge difference.

Bro_Joey_Gowdy 06-14-2009 02:44 AM

Nice... downloaded and installed. Can this be modified to show atleast one mod & admin online at all times (even if they are not online) ? I've setup a bot user that auto monitors my boards... wanted to show it online at all times. :)

idoL1 06-16-2009 08:44 AM

is there anyway to put the color legend under the active users online instead of above them?

theforumplace 06-20-2009 11:15 PM

Installed.

Thanks

Merjawy 06-21-2009 01:46 AM

installed,,, thanks

Mrs.Winters 07-20-2009 03:11 PM

Tiny request for help. I've installed this and don't know what to do to get a custom usergroup to appear. I have all my usergroups colored, but the custom one does not appear in the legend. :confused:

NitroMan 07-24-2009 05:14 PM

i haved the same problem with this
it don't show custom usergroup


PS...
For all that dont know you can use the HTML Hexadecimal Colors codes to get the color you want
example #660033 is a dark plum color
#00004A is a dark blue

here is a good color chart HTML Hexadecimal Colors chart

NitroMan 07-24-2009 05:44 PM

Quote:

Originally Posted by idoL1 (Post 1830562)
is there anyway to put the color legend under the active users online instead of above them?

try this is will do what you want

Quote:

Originally Posted by Howell (Post 1726533)
I did this by changing this mods plugin

Go to > AdminCP > Plugin & Products > Plugin Manager > Product : Usergroup Color Bar > Usergroups color bar > Edit > Plugin PHP Code

And replace ALL with the following...

Code:

if (THIS_SCRIPT == "index" and $vbulletin->options['ugcb_onoff'])
{
$activeusers2 .= '<br />';
$userbuls = split(',', $vbulletin->options['sirala']);
foreach($userbuls AS $userbul) {

$activeusers2 .= $vbulletin->usergroupcache["$userbul"]['opentag'] . '? '.$vbulletin->usergroupcache["$userbul"]['title'] . $vbulletin->usergroupcache["$userbul"]['closetag'].' ';
}
$activeusers = $activeusers .'<br />'. $activeusers2;
}

Mine now looks like this.....
https://vborg.vbsupport.ru/external/2010/01/21.jpg



All times are GMT. The time now is 01:34 PM.

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.01254 seconds
  • Memory Usage 1,818KB
  • 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
  • (3)bbcode_code_printable
  • (10)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete