Skip to content

Instantly share code, notes, and snippets.

@mo3aser
Forked from contempoinc/functions.php
Created November 28, 2016 13:42
Show Gist options
  • Save mo3aser/f60b38b47451ec4ecae82594be3e662f to your computer and use it in GitHub Desktop.
Save mo3aser/f60b38b47451ec4ecae82594be3e662f to your computer and use it in GitHub Desktop.
Admin CSS to remove Slider Revolution & Visual Composer Notices
<?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