Skip to content

Instantly share code, notes, and snippets.

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 JarrydLong/0dcf8ef25d229329e51c072512e8841e to your computer and use it in GitHub Desktop.
Save JarrydLong/0dcf8ef25d229329e51c072512e8841e to your computer and use it in GitHub Desktop.
<?php
/**
* This recipe will override only a specific country with the reduced tax rate
* after the date specified (July 1, 2020)
*
* You can add this recipe to your site by creating a custom plugin
* or using the Code Snippets plugin available for free in the WordPress repository.
* Read this companion article for step-by-step directions on either method.
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
function mypmpro_reduced_eu_tax_rates( $pmpro_vat_by_country ){
//Using ISO Country Codes
if( current_time( 'timestamp') > strtotime( "2020-07-01 00:00:01" ) ){
$pmpro_vat_by_country["BE"] = 0.12;
}
return $pmpro_vat_by_country;
}
add_filter( 'pmpro_vat_by_country', 'mypmpro_reduced_eu_tax_rates', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment