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

Where can i turn off bookmark?

jungicajungica New
edited April 2012 in Vanilla 2.0 - 2.8

I can' t see in the module list. Nor config file.

Answers

  • Options

    Which part of bookmark do you want to turn off? Do you want to turn it off on your own site? Then you need to adjust the theme (view) a bit.

    There was an error rendering this rich post.

  • Options
    jungicajungica New
    edited April 2012

    Thanks for the reply @UnderDog: i want to turn off just the right side bookmark modul

  • Options
    peregrineperegrine MVP
    edited April 2012

    This should remove the bookmark box.

    put this in you /vanilla/themes/yourtheme/design/custom.css

    .BoxBookmarks {
                   display:none;
                   }
    

    or if you don't have a .css there

    vanilla/applications/dashboard/design/style.css

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • Options

    and can i disable the whole funcion?

  • Options
    x00x00 MVP
    edited April 2012

    try

    $Configuration['Vanilla']['Modules']['ShowBookmarkedModule'] = TRUE;

    you will still have to hide those stars with css, and you will also need to block via routes

    • discussions/bookmarked
    • discussion/bookmark
    • messages/bookmark

    grep is your friend.

  • Options

    Thanks @peregrine

Sign In or Register to comment.