在WooCommerce 8+中为新客户隐藏特定的支付方式
P粉199248808
2023-08-15 21:47:22
<p>我创建了一个脚本来检查用户是否有已完成的订单。如果用户没有已完成的订单,它会禁用支付方式“cheque”。这个脚本是有效的,但是在将其添加到我的functions.php文件后,在浏览页面时出现了严重的性能问题。您是否看到了一些优化的可能性或者问题可能出在哪里?</p>
<pre class="brush:php;toolbar:false;">function has_bought() {
// 获取所有客户订单
$customer_orders = get_posts( array(
'numberposts' => -1,
'meta_key' => '_customer_user',
'meta_value' => get_current_user_id(),
'post_type' => 'shop_order', // WC订单的文章类型
'post_status' => 'wc-completed' // 仅限状态为“completed”的订单
) );
// 当客户已经有一个订单时返回“true”
return count( $customer_orders ) > 0 ? true : false;
}
add_filter('woocommerce_available_payment_gateways', 'customize_payment_gateways');
function customize_payment_gateways($gateways) {
if (!has_bought()) {
if (isset($gateways['cheque'])) {
// 取消“cheque”支付网关
unset($gateways['cheque']);
}
}
return $gateways;
}</pre>
<p><br /></p>
不需要重复查询以检查客户是否有已支付的订单,
WC_Customer
类中已经有一个轻量级的内置功能,使用get_is_paying_customer()
方法,该方法使用了一个专用于用户的元数据。您可以这样使用它,禁用新客户的“支票”付款方式:
将代码放入您的子主题的functions.php文件中(或者插件中)。已测试并可正常工作。