Filter for Latest Topics Tab

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Bocksanders
    Member
    • Oct 2017
    • 86
    • 5.3.x

    Filter for Latest Topics Tab

    I would like to be able to apply a filter to the latest topics tab.

    The challenge is that we have a political forum that while extremely popular, it is also unwanted by some members.

    I would like a way to make the posts in the political forum not show up in the latest topics tab.

    Any way to do that?

    Thanks!!
  • Mark.B
    vBulletin Support
    • Feb 2004
    • 24288
    • 6.0.X

    #2
    You can edit the long URL that is used, in order to exclude the specific node (forum) IDs that you don't want showing up.

    AdminCP > Channel Management > Channel Manager will show you what the node IDs actually are.

    Then you have to add the code below into the JSON string that forms the URL:

    exclude
    • array – list of node ids that need to be excluded from the results.
    • number – the id of the node that needs to be excluded from the results.
    Code:
    { "exclude":[1,2,3,4] }
    { "exclude":"24"
    }
    In that example, 1,2,3,4 are four forums that are to be excluded. OR use the second line to exclude a single forum (in this case, 24).

    More on this here:
    Using the advanced editor you can create powerful search modules. Following you find possible filters / parameters for using within these modules: The search JSON parameter has the following format: {
    MARK.B
    vBulletin Support
    ------------
    My Unofficial vBulletin 6.0.0 Demo: https://www.talknewsuk.com
    My Unofficial vBulletin Cloud Demo: https://www.adminammo.com

    Comment

    • Bocksanders
      Member
      • Oct 2017
      • 86
      • 5.3.x

      #3
      Thanks Mark!

      Comment

      Related Topics

      Collapse

      Working...