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.).