-
-
Save mo3aser/f60b38b47451ec4ecae82594be3e662f to your computer and use it in GitHub Desktop.
Admin CSS to remove Slider Revolution & Visual Composer Notices
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*-----------------------------------------------------------------------------------*/ | |
/* Admin CSS */ | |
/*-----------------------------------------------------------------------------------*/ | |
if(!function_exists('ct_admin_css')) { | |
function ct_admin_css() { | |
echo '<style>'; | |
echo 'tr[data-slug="slider-revolution"] + .plugin-update-tr, .vc_license-activation-notice, .rs-update-notice-wrap, tr.plugin-update-tr.active#js_composer-update { display: none !important;}'; | |
echo '</style>'; | |
} | |
} | |
add_action('admin_head', 'ct_admin_css'); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment