Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/42b90cc208a2097edc4c4ae355f81ec9 to your computer and use it in GitHub Desktop.
Save KaineLabs/42b90cc208a2097edc4c4ae355f81ec9 to your computer and use it in GitHub Desktop.
Turn Off User Activity Purchases By Default.
<?php
/**
* Set User Activity Purchases By Default to "Off"
**/
function yzc_set_activity_purchases_off_by_default() {
return 'off';
}
add_action( 'yz_wc_purchase_activity', 'yzc_set_activity_purchases_off_by_default' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment