PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

Is there a filter after product field update?

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.

Hello,

I'm using FiboFilters on my website and they have their own index database table that is used for filtering products.

Is there any filter like"woobe_before_update_product_field", but that launches after the product field update, not before? So I could launch FiboFilters action"do_action('fibofilters/indexer/update_single', $product_id);" to update specific product in index table, instead of full index rebuild.

Thanks!

Hello

Yes. You can use  do_action('woobe_after_update_page_field', $product_id, $product, $field_key, $value, $field_type);

add_action('woobe_after_update_page_field', function($product_id, $product, $field_key, $value, $field_type) {

// Add your code.

}, 10, 5);

Amazing, thank you very much!

Welcome;)