Last active
June 26, 2020 13:35
-
-
Save JarrydLong/0dcf8ef25d229329e51c072512e8841e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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