• Hi, I am using Social Articles that comes with Kleo theme. If we keep the default user as Subscriber, Social Articles option will not show in the users profile. Once we change the user profile to Contributor the Social Articles options shows in the profile but along with that WordPress admin menu bar also shows. What to do to hide the admin menu bar?

Viewing 1 replies (of 1 total)
  • Plugin Author Broobe

    (@broobe_dev)

    Hi! the wp admin menu bar is not related with social articles. You can add this lines to your functions.php to show the bar only to admins:

    if (!current_user_can('manage_options')) {
    	add_filter('show_admin_bar', '__return_false');
    }

    Thanks for using social articles!

Viewing 1 replies (of 1 total)
  • The topic ‘Contributor user level shows WordPress menu’ is closed to new replies.