Skip to content

Instantly share code, notes, and snippets.

View all-landing's full-sized avatar
🎯
Focusing

Max Nevmerzhytskij all-landing

🎯
Focusing
View GitHub Profile
/**
* @author: Svetto <https://devseon.com/en/wordpress-tutorials/woocommerce-add-a-paypal-unsupported-currency>
*/
add_filter( 'woocommerce_paypal_supported_currencies', 'add_a_paypal_valid_currency' );
function add_a_paypal_valid_currency( $currencies ) {
array_push ( $currencies , 'DOP' ); // DOP = Dominican Peso. Please change to your country code here.
return $currencies;
}