Purge Cache of product on review
-
Hi,
I have the following code to purge the cache of a stock when the product is saved:
add_action('woocommerce_update_product', 'lscwp_purge_product_update', 10, 2); function lscwp_purge_product_update($product_id, $product) { if (defined('LSCWP_V')){ do_action( 'litespeed_purge_post', $product_id ); } }
Is there a way to do the same when a new review is made on the product?
Thanks
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Purge Cache of product on review’ is closed to new replies.