To hide the Jetpack menu for subscribers and regular users, it’s enough to add the following code to the active theme functions.php file:
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 );
Also for this there are several plugins, but those that came across to me are quite old.