mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://stackoverflow.com/questions/76902319/hide-specific-payment-method-for-new-customers-in-woocommerce-5-6
7 lines
362 B
Text
7 lines
362 B
Text
add_filter('woocommerce_available_payment_gateways', 'cheque_payment_gateway_only_for_paying_customers');
|
|
function cheque_payment_gateway_only_for_paying_customers($gateways) {
|
|
if ( ! WC()->customer->get_is_paying_customer() && isset($gateways['cheque']) ) {
|
|
unset($gateways['cheque']); // Unset 'cheque' payment option
|
|
}
|
|
return $gateways;
|
|
}
|