1. Home
  2. Jetpack CRM
  3. Core Modules
  4. WooCommerce Sync
  5. How to allow Jetpack CRM users access to manage customers

How to allow Jetpack CRM users access to manage customers

By default, WooCommerce blocks non-admin users from entering WP Admin, or seeing the WP Admin bar. These areas are usually not relevant to customers and are therefore hidden.

WP Admin Bar

To disable this restriction, and re-enable the admin bar for all users, a small snippet can be added to your theme functions.php file.

If you only want to allow admin access you only need to add the first line.

/* Code goes in theme functions.php */
add_filter( 'woocommerce_prevent_admin_access', '__return_false' );
add_filter( 'woocommerce_disable_admin_bar', '__return_false' );
Updated on January 21, 2022

Was this article helpful?

Related Articles

Still not found an answer?
If you've searched the knowledge base and still can't find a solution, please submit a ticket.
CONTACT SUPPORT