• Editors can see the settings page but can’t submit it.

    You need to apply the following filter to allow editors to save the settings page in addition to being able to see it.

    add_filter( ‘option_page_capability_hubspot_settings_options’, ‘hubspot_capability’ );
    function hubspot_capability( $cap ) {
    return ‘edit_posts’;
    }

  • The topic ‘Permissions issue’ is closed to new replies.