How to Enable WPCodeBox Dark Mode in A...
Optimize your admin experience with WPCodeBox Dark Mode. Download this snippet to eas...

WPCodeBox
472
Effortlessly remove WordPress plugin notifications from all admin pages, ensuring a cleaner, more focused dashboard experience. Hide annoying alerts everywhere except your main WP Admin dashboard.
<?php
add_action( 'current_screen', function() {
$screen = get_current_screen();
if ( $screen->id !== "dashboard" ) {
add_action( 'admin_enqueue_scripts', function() {
echo '<style>
div.wrap > .update-nag,
div.wrap > .updated,
div.wrap > .error,
div.wrap > .is-dismissible
{
display: none !important;
}
</style>';
});
}
});





Redirect users after listing submission on your MyListing website.
