Skip to content

Instantly share code, notes, and snippets.

@dennisnissle
Created May 7, 2018 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dennisnissle/3fac37d263e9cf3c0b035d3819700f4f to your computer and use it in GitHub Desktop.
Save dennisnissle/3fac37d263e9cf3c0b035d3819700f4f to your computer and use it in GitHub Desktop.
Force removal of invoice data
<?php
add_filter( 'woocommerce_gzdp_privacy_erase_invoice_data', 'my_child_woocommerce_gzdp_force_invoice_data_removal', 10, 1 );
function my_child_woocommerce_gzdp_force_invoice_data_removal( $remove ) {
return true;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment