diff --git a/includes/class-wc-payment-gateways.php b/includes/class-wc-payment-gateways.php index 9903c3e3113..f6a039c1835 100644 --- a/includes/class-wc-payment-gateways.php +++ b/includes/class-wc-payment-gateways.php @@ -73,7 +73,9 @@ class WC_Payment_Gateways { 'WC_Gateway_Paypal', ); - if ( 'US' === WC()->countries->get_base_country() ) { + $simplify_countries = array( 'US', 'IE' ); // USA and Ireland + + if ( in_array( WC()->countries->get_base_country(), $simplify_countries ) ) { if ( class_exists( 'WC_Subscriptions_Order' ) || class_exists( 'WC_Pre_Orders_Order' ) ) { if ( ! function_exists( 'wcs_create_renewal_order' ) ) { // Subscriptions < 2.0 $load_gateways[] = 'WC_Addons_Gateway_Simplify_Commerce_Deprecated';