Skip to content

Instantly share code, notes, and snippets.

@madeincosmos
Created March 12, 2019 19:20
Show Gist options
  • Save madeincosmos/5535a45c0ee665bfd65d58aafdd4c918 to your computer and use it in GitHub Desktop.
Save madeincosmos/5535a45c0ee665bfd65d58aafdd4c918 to your computer and use it in GitHub Desktop.
Add PayPal Pro support for custom countries
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