How to quickly but selectively change forum settings?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • LeeCHeSSS
    Senior Member
    • Jan 2002
    • 321

    How to quickly but selectively change forum settings?

    I want to turn off "Show this forum and its child forums on the forum jump menu" for all subforums of 2 levels deep (or lower).
    Can this be done quickly within vb3's menu's, or do I need a query? In case of the latter, please be so kind to share it with me
  • merk
    Senior Member
    • Jul 2001
    • 4149

    #2
    Originally posted by LeeCHeSSS
    I want to turn off "Show this forum and its child forums on the forum jump menu" for all subforums of 2 levels deep (or lower).
    Can this be done quickly within vb3's menu's, or do I need a query? In case of the latter, please be so kind to share it with me
    The simple query to do it globally:

    Code:
    UPDATE forum SET options = options - 65536 WHERE options & 65536
    Re-reading your post, you wanted it with more conditions, maybe if you made a php script to generate more conditions of forumids of depth 2+?

    Comment

    • LeeCHeSSS
      Senior Member
      • Jan 2002
      • 321

      #3
      Pah, you of all should know I was trying to get a clearcut answer. I'm lazy you know

      Comment

      • merk
        Senior Member
        • Jul 2001
        • 4149

        #4
        Thats why i didnt bother wasting my time to help more!

        Comment

        Loading...
        Working...