- new admin design
- new hook ‘woobe_users_args‘ allows to get users by custom roles, for example ‘vendors’. By default is ‘authors’
add_filter('woobe_users_args', function ($args) {
return array('fields' => array('ID', 'display_name'), 'who' => 'vendors');
});
- new options for math operations in tab Bulk Edit with numeric fields. You can select numeric field in tab Bulk Edit then make math operation with another numeric field using [+ – * /] value

- To text fields added new behavior options: Empty, NOT empty

- to filter by post status and Bulk Edit post status operations added state ‘scheduled’
- added dynamic information about how many products selected by checkbox


- to the settings added ability for synchronizing profiles of the managers – if to select ‘Yes‘ the same alone profile will be for all managers

- tax classes added to the filter form

- added hot key ALT + S to perform filtration by parameters selected in the search form
- new option in settings, it is possible to change font size of the text or number cell

- new hook ‘woobe_new_product_status‘ which allows to define what status new products created by BEAR will has

- new hook ‘woobe_stock_quantity_dependency‘. If to set FALSE then with changing of stock quantity to positive value field ‘manage_stock’ will not be changed automatically. By default is TRUE.
- new hook ‘woobe_bulkedit_taxonomies‘. It is useful when the shop has thousands of taxonomies to avoid long time loading in tab Bulk Edit. Example, lets not display products categories:
add_filter('woobe_bulkedit_taxonomies', function ($taxonomy_objects) {
if (isset($taxonomy_objects['product_cat'])) {
unset($taxonomy_objects['product_cat']);
}
return $taxonomy_objects;
});
- new hook ‘woobe_filter_taxonomies‘ . It is useful when the shop has thousands of taxonomies to avoid long time loading in tab Filters. Example, lets not display products categories:
add_filter('woobe_filter_taxonomies', function ($taxonomy_objects) {
if (isset($taxonomy_objects['product_cat'])) {
unset($taxonomy_objects['product_cat']);
}
return $taxonomy_objects;
});