Advertisement
businessdad

WooCommerce Tax Display by Country - Redirect users

Oct 11th, 2017
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.32 KB | None | 0 0
  1. /**
  2.  * Aelia Tax Display by Country - Redirect users to a different URL depending on
  3.  * their country.
  4.  *
  5.  * HOW TO USE THIS CODE
  6.  * Simply add the code to the bottom of your theme's functions.php file, and it
  7.  * will run automatically. For more information: https://www.skyverge.com/blog/add-custom-code-to-wordpress/
  8.  *
  9.  * GPL DISCLAIMER
  10.  * Because this code program is free of charge, there is no warranty for it, to the extent permitted by applicable law.
  11.  * Except when otherwise stated in writing the copyright holders and/or other parties provide the program "as is"
  12.  * without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of
  13.  * merchantability and fitness for a particular purpose. The entire risk as to the quality and performance of the program
  14.  * is with you. should the program prove defective, you assume the cost of all necessary servicing, repair or correction.
  15.  *
  16.  * Need a consultation, or assistance to customise this code? Find us on Codeable: https://aelia.co/hire_us
  17.  */
  18. add_action('template_redirect', function() {
  19.   if(empty($_COOKIE['aelia_customer_country'])) {
  20.     return;
  21.   }
  22.  
  23.   // Redirect US customers to a dedicated URL
  24.   if($_COOKIE['aelia_customer_country'] === 'US') {
  25.     wp_redirect('us.my-domain.com');
  26.     exit;
  27.   }
  28. }, 1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement