Created
March 12, 2019 19:20
-
-
Save madeincosmos/5535a45c0ee665bfd65d58aafdd4c918 to your computer and use it in GitHub Desktop.
Add PayPal Pro support for custom countries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function custom_add_paypal_supported_cc_for_bolivia ( $data ) { | |
$data['BO'] = array ( | |
'Visa' => 'Visa', | |
'MasterCard' => 'MasterCard', | |
); | |
return $data; | |
} | |
add_filter ( 'woocommerce_paypal_pro_available_card_types', 'custom_add_paypal_supported_cc_for_bolivia' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment