Royal96
Power Member
- Mar 16, 2019
- 683
- 376
I've tried code and plugins, but there are always a few notifications slipping through.
Do you know how to disable/hide all of them, preferably with PHP?
This code snippet removed almost every notification, but not entirely:
add_action('admin_head', 'bc_disable_notice'); function bc_disable_notice() { ?> <style> .notice { display: none;} </style> <?php }
Do you know how to disable/hide all of them, preferably with PHP?
This code snippet removed almost every notification, but not entirely:
add_action('admin_head', 'bc_disable_notice'); function bc_disable_notice() { ?> <style> .notice { display: none;} </style> <?php }