• Anyone’s know if is any plugin out there that notify the users when the price changes so they come back? When the price goes down to send an email?

Viewing 1 replies (of 1 total)
  • We can do this, if we are using woocommerce we sent notification during price update. with help of below hook.

    add_action( ‘save_post_product’, ‘wpse63478_save’ );

    function wpse63478_save() {

    //save stuff

    }

Viewing 1 replies (of 1 total)
  • The topic ‘change price notification plugin?’ is closed to new replies.