Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save wpweb101/b73d284bd6ae6f430a7f3233ee60e324 to your computer and use it in GitHub Desktop.

Select an option

Save wpweb101/b73d284bd6ae6f430a7f3233ee60e324 to your computer and use it in GitHub Desktop.
Woo points and rewards snippet for disable email notificaiton for signup earn points
<?php
function woo_pr_disable_signup_earn_email_notification( $is_email_enable ){
$is_email_enable = false;
return $is_email_enable;
}
add_filter('woo_pr_enable_signup_earn_email_notification', 'woo_pr_disable_signup_earn_email_notification',10,1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment