
Pablo Borysenco(@pavlo_borysenco)
34,196 Posts
Quote from Pablo Borysenco on September 14, 2020, 10:17
Hello
Your user role must have - manage_options ( https://wordpress.org/support/article/roles-and-capabilities/ )
OR you can add to functions.php
add_filter('woobe_user_can_edit', function($is_forbidden, $field_key, $shop_manager_visibility_array) {
$is_forbidden = 1
return $is_forbidden;
}, 10, 3);
Hello
Your user role must have - manage_options ( https://wordpress.org/support/article/roles-and-capabilities/ )
OR you can add to functions.php
add_filter('woobe_user_can_edit', function($is_forbidden, $field_key, $shop_manager_visibility_array) {
$is_forbidden = 1
return $is_forbidden;
}, 10, 3);

Pablo Borysenco(@pavlo_borysenco)
34,196 Posts
Quote from Pablo Borysenco on September 18, 2020, 10:55
Hello
Ok!
"forbidden" - this only appears if the user is not allowed to edit the fields. For the administrator, this may not appear.
Possibly third party plugins/theme change user role data.
Don't feel comfortable with updating functions.php - I gave you the fastest and easiest solution. A more correct solution - disable all plugins except woo+woobe and do a test. Activate the plugin one by one to find the conflict
Hello
Ok!
"forbidden" - this only appears if the user is not allowed to edit the fields. For the administrator, this may not appear.
Possibly third party plugins/theme change user role data.
Don't feel comfortable with updating functions.php - I gave you the fastest and easiest solution. A more correct solution - disable all plugins except woo+woobe and do a test. Activate the plugin one by one to find the conflict