Disable thread ratings

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • matthewgx
    New Member
    • Aug 2008
    • 24

    Disable thread ratings

    How can I disable thread ratings throughout the site? I have Googled and looked around in the options without much luck.

    Thanks!
  • Jake Bunce
    Senior Member
    • Dec 2000
    • 46598
    • 3.6.x

    #2
    That is set for each individual forum:

    Admin CP -> Forums & Moderators -> Forum Manager -> Edit Forum -> Allow Thread Ratings in this Forum

    Or you can disable that for all forums by running this query (backup first):

    UPDATE forum
    SET options = options - 2048
    WHERE options & 2048

    After which you will need to rebuild your forum information:

    Admin CP -> Import & Maintenance -> Update Counters -> Rebuild Forum Information

    Comment

    • matthewgx
      New Member
      • Aug 2008
      • 24

      #3
      Thanks! That worked!

      Comment

      • Garamond
        Senior Member
        • Jul 2004
        • 296
        • 3.8.x

        #4
        And vice versa, enabling it for all forums, would that query look like this?

        UPDATE forum
        SET options = options & 2048
        WHERE options - 2048

        Comment

        • Lats
          Senior Member
          • Mar 2002
          • 3671

          #5
          No, more like this...
          Code:
          UPDATE 
              forum 
          SET 
              options=options + 2048 
          WHERE NOT(options & 2048);
          Lats...

          Comment

          • Garamond
            Senior Member
            • Jul 2004
            • 296
            • 3.8.x

            #6
            Ahh.. thanks Lats

            Comment

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