How to Add Custom Styling to Affiliate...
This snippet provides custom CSS styling to enhance the appearance of the AffiliateWP...

WPCodeBox
724
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>';
});
}
});





