remove master slider admin panel notification wordpress
Add css inside the admin panel file by creating a CSS file inside the template
folder and enque it inside the admin panel like this:
function admin_style() {
wp_enqueue_style('admin-styles', get_template_directory_uri().'/assets/css/unminified/admin.css');
}
add_action('admin_enqueue_scripts', 'admin_style');
And inside your css file apend this line to remove the notification
.notice.msp-rate.notice-info.is-dismissible {
display: none;
}