Advertisement
businessdad

WooCommerce Tax Display - Product prices fixed only for EU

Mar 6th, 2018
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.54 KB | None | 0 0
  1. /**
  2.  * Aelia Tax Display by Country for WooCommerce.
  3.  * Enabled the "keep product prices fixed" option only when the customer is in
  4.  * the EU.
  5.  *
  6.  * HOW TO USE THIS CODE
  7.  * Add the code to the bottom of your theme's functions.php file, and it
  8.  * will run automatically. For more information: https://www.skyverge.com/blog/add-custom-code-to-wordpress/
  9.  *
  10.  * GPL DISCLAIMER
  11.  * Because this code program is free of charge, there is no warranty for it, to the extent permitted by applicable law.
  12.  * Except when otherwise stated in writing the copyright holders and/or other parties provide the program "as is"
  13.  * without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of
  14.  * merchantability and fitness for a particular purpose. The entire risk as to the quality and performance of the program
  15.  * is with you. should the program prove defective, you assume the cost of all necessary servicing, repair or correction.
  16.  *
  17.  * Need a consultation, or assistance to customise this code? Find us on Codeable: https://aelia.co/hire_us
  18.  *
  19.  * @param bool keep_prices_fixed
  20.  * @return bool
  21.  */
  22. add_filter('wc_aelia_tdbc_keep_prices_fixed', function($keep_prices_fixed) {
  23.   // Get customer's billing country. You can replace it with the shipping country,
  24.   // if that's the information used to calculate taxes
  25.   $customer_country = WC()->customer->get_billing_country();
  26.   // Only keep prices fixed for EU customers
  27.   return in_array($customer_country, WC()->countries->get_european_union_countries());
  28. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement