Access to Shop Manager
-
Send Users Email plugin dashboard can be accessed from Administrator account. But I want to give access to Shop Manager role too.
Here are some demo-
function add_theme_caps() {
$role = get_role( ‘shop_manager’ );
$role->add_cap( ‘edit_posts’ );
$role->add_cap( ‘edit_others_posts’ );
$role->add_cap( ‘edit_published_posts’ );
$role->add_cap( ‘delete_published_posts’ );
$role->add_cap( ‘delete_products’ );
}
add_action( ‘admin_init’, ‘add_theme_caps’);
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Access to Shop Manager’ is closed to new replies.