Hi @lebasca, thanks for reaching WCMp Support!!
It seems like the Admin doesn’t have access to these capabilities :
edit_others_posts
delete_posts
create_posts
So, please ask the server admin to grant you these capabilities, so you can access the edit commission page.
Alternatively, you can add the following code snippet to function.php of the current active site :
add_action( 'registered_post_type', 'change_caps_for_commission', 10, 2 );
/**
* Modify registered post type menu label
*
* @param string $post_type Registered post type name.
* @param array $args Array of post type parameters.
*/
function change_caps_for_commission( $post_type, $args ) {
if ( 'dc_commission' === $post_type ) {
global $wp_post_types;
$args->cap->edit_others_posts = __( 'edit_others_posts', 'dc-woocommerce-multi-vendor' );
$args->cap->delete_posts = __( 'delete_posts', 'dc-woocommerce-multi-vendor' );
$args->cap->create_posts = __( 'create_posts', 'dc-woocommerce-multi-vendor' );
$wp_post_types[ $post_type ] = $args;
}
}
Let us know if you have any further query.