I have customized the bulk edit functionality using
add_action('woocommerce_product_bulk_edit_start', function () {
// ...
}, 10, 0);
add_action('woocommerce_product_bulk_edit_save', function ($product) {
// ...
}, 10, 1);
I would like to do some further processing after all products have been saved. Is there a hook I can tie into for that?
Any pointers are welcome.
Clarification: I do need to access all information sent in the bulk edit request (bulk edit field values, product ids, etc.).
You could use Wordpress
admin_init
action hook like in this example, where a custom message is displayed after products have been saved:Code goes in function.php file of your active child theme (active theme). Tested and works.
Note: