Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save KresimirKoncicNeuralab/5b702789539cd848fe10 to your computer and use it in GitHub Desktop.
Save KresimirKoncicNeuralab/5b702789539cd848fe10 to your computer and use it in GitHub Desktop.
add_filter( 'woocommerce_paypal_supported_currencies', 'add_hrk_paypal_valid_currency' );
function add_hrk_paypal_valid_currency( $currencies )
{
array_push ( $currencies , 'HRK' );
return $currencies;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment