Hide sidebar panel by default for all users
-
I like the backend as clean as possible. Therefore, I want to hide the Multicollab sidebar by default. I can hide the general Gutenberg sidebar with this JS
(function(wp) {
wp.domReady(function() {
const { dispatch } = wp.data;
dispatch('core/edit-post').closeGeneralSidebar();
});
})(window.wp);How can I hide the Multicollab Sidebar? Adding this does not work:
dispatch('core/edit-post').closeGeneralSidebar("cf-activity-center/cf-activity-center");Thanks in advance!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Hide sidebar panel by default for all users’ is closed to new replies.