P粉1564156962023-08-16 12:23:45
不需要重复查询以检查客户是否有已支付的订单,WC_Customer
类中已经有一个轻量级的内置功能,使用get_is_paying_customer()
方法,该方法使用了一个专用于用户的元数据。
您可以这样使用它,禁用新客户的“支票”付款方式:
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']); // 取消“支票”付款选项 } return $gateways; }
将代码放入您的子主题的functions.php文件中(或者插件中)。已测试并可正常工作。