Products belonging to certain custom taxonomy terms do not display paypal on th
-
I want to hide paypal on the checkout page for items belonging to a particular custom taxonomy term.
taxonomy is “options”
term is “notpaypal”add_filter('woocommerce_available_payment_gateways', 'woocs_filter_gateways', 1); function woocs_filter_gateways($gateway_list) { global $woocommerce; if( has_term( 'notpaypal', 'options' ) ) { unset($gateway_list['paypal']); } return $gateway_list; }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Products belonging to certain custom taxonomy terms do not display paypal on th’ is closed to new replies.