Hello,
Is there a way to remove slider revolution from the wordpress admin bar when logged into the website?
Hello,
Is there a way to remove slider revolution from the wordpress admin bar when logged into the website?
Hi Kim,
Thank you for reaching out to us. You probably can do this using hooks, try adding the following code in your child theme’s functions.php file:
add_action('wp_head', 'remove_rs_admin_bar');
function remove_rs_admin_bar() {
if ( is_admin_bar_showing() ) {
echo '<style>
#wp-admin-bar-revslider {
display: none;
}
</style>';
}
}
Please note that since this is a custom code that changes the default behavior/display of the theme, you will be responsible to maintain or update the code in case you require further changes or if the code stops working in future updates. If you are uncertain how to proceed, it would be best to get in touch with a developer.
Thanks!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.