Multi-site support & optional WP Admin modal
-
Hello!
Nice work with this plugin, it has really helped us a lot.
I have some feedback if you would like to hear:The CookieBot-modal should be optional in WP Admin. We only use WP Admin for controlling the content, no other people are allowed inside the control panel. So we don’t need the CookieBot-modal here. Maybe there should be an options to make the modal only appear frontend?
In the meantime we used this to remove it from WP Admin:
/** * Remove CookieBot-window in WP Admin. */ add_action( 'plugins_loaded', function() { if ( class_exists( 'Cookiebot_WP' ) ) { if ( is_admin() ) { remove_action( 'admin_head', [ Cookiebot_WP::instance(), 'add_js' ] ); } } }, 6 );
There should be multisite-support. We are using this in a multisite-network and we network-activated the plugin, yet we still have to go into every blog and configure the “Cookiebot ID”-field. This takes a lot of time and would be solved by adding a multisite settings page.
Kind regards, Robert S?ther.
- The topic ‘Multi-site support & optional WP Admin modal’ is closed to new replies.