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.
Options

Disable "Start New Discussion" Button on the Panel

ken3ken3 New
edited December 2010 in Vanilla 2.0 - 2.8
I was looking to disable the "start new discussion" button on the panel and cannot find where to go to remove it. I'm on the standard vanilla them and sure I'm just overlooking it.

Comments

  • Options

    I would also like to know how this is done. thank you

    There was an error rendering this rich post.

  • Options
    zar3xzar3x
    edited November 2012

    If you just want to remove it. you can add this in your custom.css
    a.BigButton{ display:none;}

    ( if you don't have custom.css file. just create one and save it in theme/default/design )

  • Options
    KasperKasper Scholar of the Bits Copenhagen Vanilla Staff

    Hiding all BigButtons is not the best idea as they're used for Conversations and profile pictures too. Do something like this instead, targeting only the "New Discussion" button in the sidepanel:

    #Panel . NewDiscussion {
        visibility: hidden;
        display: none;
    }
    

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

  • Options

    @kasperisager

    yeah ofcuorse, that one is better did't think of that. lucky that your where here to correct me :)

Sign In or Register to comment.