I can' t see in the module list. Nor config file.
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.
Thanks for the reply @UnderDog: i want to turn off just the right side bookmark modul
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
and can i disable the whole funcion?
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
Thanks @peregrine
Answers
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.
Thanks for the reply @UnderDog: i want to turn off just the right side bookmark modul
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
and can i disable the whole funcion?
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
Thanks @peregrine