Hi,
Please paste this code to your functions.php of child theme:-
// DELETE ON SALE TRANSIENTS WHEN POST SAVED
function delete_sale_transients() {
global $post;
if( $post->post_type == 'product' ) {
delete_transient( 'wc_products_onsale' );
}
}
add_action( 'save_post', 'delete_sale_transients' );
Thanks
Mohammad