Page 1 of 1

bbcode username

PostPosted: 03 May 2014, 18:46
by Allvater
Hi there :)

i really like this bbcode


but, is there any way to hide users from specified groups? i have an group called "inactive" and dont want to show these usernames up in the dropdown :)

Re: bbcode username

PostPosted: 03 May 2014, 22:41
by 4seven
In BBCode-Mod-Instruction

find

Code: Select all
      // Username [BBCode] / (c) 4seven / 2011
      $sql = "SELECT user_id, username, user_colour
         FROM "
 . USERS_TABLE . "
         WHERE user_type IN ("
 . USER_FOUNDER . ', ' . USER_NORMAL . ")
         ORDER BY username_clean"
;
      $result  = $db->sql_query($sql); 

replace with

Code: Select all
     // enter the user id's which should'nt be visible in bbcode-username-list
     $userid_arr = array(2, 58, 62);

      // Username [BBCode] / (c) 4seven / 2011
      $sql = "SELECT user_id, username, user_colour
         FROM "
 . USERS_TABLE . "
         WHERE user_type IN ("
 . USER_FOUNDER . ', ' . USER_NORMAL . ")
         AND  "
 . $db->sql_in_set('user_id', $userid_arr, false) . "
         ORDER BY username_clean"
;
      $result  = $db->sql_query($sql); 

Re: bbcode username

PostPosted: 10 May 2014, 09:47
by Allvater
thanks :)