P粉9856865572023-08-16 09:41:30
不需要使用更重的查询来检查客户是否有付费订单,因为WC_Customer
类中已经有一个轻量级的内置功能,使用get_is_paying_customer()
方法,该方法使用自定义的用户元数据,自WooCommerce版本5.8+起可用。
您可以使用以下方式,为新客户禁用“支票”付款:
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文件中(或插件中)。已测试并可用。