Thread Display Mode

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • djhassoo
    Member
    • Feb 2008
    • 38
    • 3.6.x

    Thread Display Mode

    Hello

    I want to know how i can change any user group thread display mode with my admin cp? please help

    Thank You

    DJ Hassoo
  • Jake Bunce
    Senior Member
    • Dec 2000
    • 46598
    • 3.6.x

    #2
    You can set the default for new registrations in your:

    Admin CP -> vBulletin Options -> User Registration Options -> Default Registration Options

    You can mass update the preferences of exsiting users in your:

    Admin CP -> Maintenance -> Execute SQL Query

    There is a menu with predefined queries. You must have permission to execute queries in your includes/config.php file:

    Code:
    	//	****** USERS WITH QUERY RUNNING PERMISSIONS ******
    	//	The users specified here will be allowed to run queries from the control panel.
    	//	See the above entries for more information on the format.
    	//	Please note that the ability to run queries is quite powerful. You may wish
    	//	to remove all user IDs from this list for security reasons.
    $config['SpecialUsers']['canrunqueries'] = '';

    Comment

    • Jose Amaral Rego
      Senior Member
      • Feb 2005
      • 11058
      • 1.1.x

      #3
      First have a tested working backup of database.
      Backing-up your MySQL Database Manually



      Run Query to Change Thread View to *
      Threaded / Hybrid
      # replace vbb_ with your vB table prefix Example: [vbb_thread] if non leave blank
      # replace X with the usergroup id(s)
      # 'X' = 1 (Threaded) or 2 (Hybrid)

      Code:
      UPDATE `user` SET `threadedmode` = '[COLOR="Blue"]X[/COLOR]' WHERE `usergroupid` = '[COLOR="Red"]X[/COLOR]';
      Untested though...

      Comment

      widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
      Working...