Don’t want to give access to shop managers, how to restrict?

@sabakhurrum You can restrict the access by using this code in theme functions.php file.

add_filter( 'woo_wallet_user_capability', 'woo_wallet_user_capability_callback', 10, 1 );
if ( ! function_exists( 'woo_wallet_user_capability_callback' ) ) {
	function woo_wallet_user_capability_callback( $capability ) {
		$capability = 'manage_options';
		return $capability;
	}
}

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer