Created
June 26, 2020 10:38
-
-
Save JarrydLong/d682cd8c912822c0132e40090e50ebd5 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. | |
* | |
* 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 | |
$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