Flatsome vừa update lên 3.14 cùng với 1 cục màu vàng rất khó chịu, vậy thì ta ẩn nó đi thôi, code dưới chèn vào function sẽ làm cho cục vàng đó bay màu với mọi user trừ admin đầu tiên :)))
add_action(‘admin_enqueue_scripts’, ‘ds_admin_theme_style’);
function ds_admin_theme_style() {
$user_ID = get_current_user_id();
if ($user_ID != 1) {
echo ‘<style>.update-nag, .updated, .error, .is-dismissible, .notice { display: none; }</style>’;
}
}
Còn code này ẩn hết luôn, mọi user :
add_action(‘admin_enqueue_scripts’, ‘ds_admin_theme_style’);
function ds_admin_theme_style() {
echo ‘<style>.update-nag, .updated, .error, .is-dismissible, .notice { display: none; }</style>’;
}
Nguồn : Flatsome Group