The Arcive of vBulletin Modifications Site. |
|
SQL query to set forum options (globally) Details »»
|
|||||||||||||||||||||||||||
|
SQL query to set forum options (globally)
Developer Last Online: Dec 2021
I need to set all my forums to use style id 1 as default, but not force them to do that.
I've removed some styles and some of my forums still have style id 17 forced on their settings - just want to clean it up. ![]() Show Your Support
|
|||||||||||||||||||||||||||
| Comments |
|
#2
|
||||
|
||||
|
Ok I got the id's set:
Code:
UPDATE forum SET styleid='1' |
|
#3
|
||||
|
||||
|
Got the other too (quite easy when you think it through - see I'm learning!!)
![]() Code:
UPDATE forum SET styleoverride='0'; |
|
#4
|
||||
|
||||
|
whats the one above do ... does styleoverride='0' set it to no... or is that the style id ?
- Mist |
|
#5
|
||||
|
||||
|
0 = no, I checked in the cp after I'd done one of them to see.
1 = yes. |
|
#6
|
||||
|
||||
|
thank buddy
![]() - Mist |
![]() |
|
|