Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

I need announcements not to show in the Homepage.

TomasGTomasG New
edited September 2012 in Vanilla 2.0 - 2.8

Hello.
I've imported a forum from vBulletin, where stickies aren't used exclusively for making announcements. Here they work differently and I'm fine with that.
However, I'd really like these announcements to be shown only when the user is browsing a category, and not in the Homepage. Is there any way this can be done?
Thanks!

Best Answer

  • KasperKasper Vanilla Staff
    Answer ✓

    In 2.1 there's an option to only announce a discussion in its category. If you don't want to upgrade to 2.1 yet, you can do something similar using CSS:

    .Discussions.index .Item.Announcement {
        display: none;
    }
    

    ...or using JS:

    $(".Discussions.index .Item.Announcement").remove();
    

    Kasper Kronborg Isager (kasperisager) | Freelance Developer @Vanilla | Hit me up: Google Mail or Vanilla Mail | Find me on GitHub

Answers

Sign In or Register to comment.