vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Male / Female usergroup color (https://vborg.vbsupport.ru/showthread.php?t=277575)

kh99 03-06-2012 04:03 PM

Try using $user['field7'] instead of $vbulletin->userinfo['field7'].

BirdOPrey5 03-07-2012 12:03 AM

kh99 to the rescue... Oversight on my part!

PHP Code:

global $vbulletin;

if (
$user['field7'] == "GIRL")
{
     
$user['musername'] = '<span style="color:pink;">' $user['username'] . '</span>';
}

else
{
     
$user['musername'] = '<span style="color:blue;">' $user['username'] . '</span>';


I would have noticed but the thread I tested it in only had one post (mine.)

kh99 03-07-2012 12:20 AM

I knew you'd figure it out too when you saw the output - I probably should have left it for you to deal with, but it was a slow day...

BirdOPrey5 03-07-2012 02:50 AM

Quote:

Originally Posted by kh99 (Post 2306991)
I knew you'd figure it out too when you saw the output - I probably should have left it for you to deal with, but it was a slow day...

I never turn down a helping hand... I've been busy mod writing all day. Lines of code are blurring together right now. :erm:

sadiq6210 03-07-2012 11:02 AM

kh99 & BirdOPrey5
Thank you very much for your effort, I appreciate

I noticed that the code is working perfect in postbit (showthread.php pages) but it is not working in online users or forumhome or forumdisplay !

In ( (online users ) all users in blue color
In ( (showthread.php ) it is working perfect (Blue + Pink)

Okay I will change it only in postbit but how can I make the change only in postbit so the color will not change to all blue in other pages?

BirdOPrey5 03-07-2012 04:37 PM

To work only in showthread...

PHP Code:

global $vbulletin;

if (
THIS_SCRIPT == 'showthread')
{
  if (
$user['field12'] == "GIRL")
  {
     
$user['musername'] = '<span style="color:pink;">' $user['username'] . '</span>'
  }
  else
  {
     
$user['musername'] = '<span style="color:blue;">' $user['username'] . '</span>';
  }


If it's not working in whoslonline I'm guessing it needs extra info added to the query, that will be a little bit tougher.

sadiq6210 03-08-2012 02:40 PM

This code working perfect in showthread. Thanks dear

last question and sorry to take that much from your time

I want this code working only with member group (group==2)
Because I have moderator with (red color) and I don't want to change their color to blue or pink.

BirdOPrey5 03-08-2012 02:48 PM

just for usergroup 2...

PHP Code:

global $vbulletin;

if (
THIS_SCRIPT == 'showthread' AND is_member_of ($user2))
{
  if (
$user['field12'] == "GIRL")
  {
     
$user['musername'] = '<span style="color:pink;">' $user['username'] . '</span>'
  }
  else
  {
     
$user['musername'] = '<span style="color:blue;">' $user['username'] . '</span>';
  }



sadiq6210 03-08-2012 03:47 PM

Thank you very much Joe

Working perfect .. appreciate you

thecojuk 03-15-2012 01:25 AM

thanks man


All times are GMT. The time now is 06:22 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.01176 seconds
  • Memory Usage 1,747KB
  • 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_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete