Skip to content

Instantly share code, notes, and snippets.

@chrdesigner
Last active August 29, 2015 14:22
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 chrdesigner/9ed7b636d4038ced5134 to your computer and use it in GitHub Desktop.
Save chrdesigner/9ed7b636d4038ced5134 to your computer and use it in GitHub Desktop.
allow AED for WooCommerce
<?php
// allow AED for WooCommerce
add_filter( 'woocommerce_paypal_supported_currencies', 'paypal_aed_current' );
function paypal_aed_current($currency_array) {
$currency_array[] = 'AED';
return $currency_array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment