Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
alek123
tagDiv Member

@Anamaria, FYI


function hide_menu_and_admin_bar_items_for_editor() {
// Check if the current user is an editor
if (current_user_can('editor') && !current_user_can('administrator')) {
add_action('admin_bar_menu', function ($wp_admin_bar1) {
if ( is_admin_bar_showing() ) {
echo '<style>
#wp-admin-bar-td_live_css_css_writer, #wp-admin-bar-tdc_edit, #wp-admin-bar-tdc_page_mobile_template {
display: none !important;
}
</style>';
}
}, 9999);
}
}
add_action('init', 'hide_menu_and_admin_bar_items_for_editor');

  • This reply was modified 1 year by alek123.
  • This reply was modified 1 year by alek123.
Viewing 1 post (of 1 total)