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.
There was an error rendering this rich post.
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
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
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
grep is your friend.
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.
There was an error rendering this rich post.
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
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.
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
grep is your friend.
Thanks @peregrine