Viewing 4 replies - 16 through 19 (of 19 total)
  • Hi Jeremy,

    I’m a fan of Jetpack, but do not want my Subscribers to see it on my WordPress.org site. Jetpack should remain completely behind-the-scenes, along with other plugins – when I have purposely blocked admin access to Subscribers.

    Subscribers only need access to their Profile Page. If any of my subscribers even have WordPress.com accounts, let them get notifications on their own website.

    Too much Jetpack is confusing, and intrusive.

    As a fix, I tried the Jetpack Only for Admins plugin. Unfortunately, it did not redirect correctly on my site.

    Hi Jeremy

    “We plan on making some improvements to the UI of the Jetpack menu, and we will definitely address this issue. “

    You mentioned this 6 months ago and there’s been several Jetpack updates – what’s the progress on these changes?

    Try adding this to your child theme functions.php (or use Code Snippets plugin):

    function ap_remove_jetpack_page( ) {
    if ( class_exists( ‘Jetpack’ ) && !current_user_can( ‘manage_options’ ) ) {
    remove_menu_page( ‘jetpack’ );
    }
    }
    add_action( ‘admin_menu’, ‘ap_remove_jetpack_page’, 999 );

    or just use the plugin above

Viewing 4 replies - 16 through 19 (of 19 total)
  • The topic ‘How do I disable Jetpack from subscribers?’ is closed to new replies.