Hi , Please help me to disable custom payment gateway for specific Language
-
How to disable cutom payment gateway for language with woocommerce multilingual
like this code
https://wpml.org/forums/topic/different-payments-gateways-for-different-languages/
function wpml_filter_gateways($gateways){
if(ICL_LANGUAGE_CODE == ‘fr’) //Checks if the selected language is French.
unset($gateways[‘paypal’]); //”remove” paypalreturn $gateways; //returns the other payment methods.
}
add_filter(‘woocommerce_available_payment_gateways’,’wpml_filter_gateways’,1);in function theme . how i get custom language tag/string from custom gateway to put this on the function theme for specific language ? help me please.
Thanks sir
The page I need help with: [log in to see the link]
- The topic ‘Hi , Please help me to disable custom payment gateway for specific Language’ is closed to new replies.