在WooCommerce 8+中为新客户隐藏特定的支付方式
P粉199248808
P粉199248808 2023-08-15 21:47:22
0
1
441

我创建了一个脚本来检查用户是否有已完成的订单。如果用户没有已完成的订单,它会禁用支付方式“cheque”。这个脚本是有效的,但是在将其添加到我的functions.php文件后,在浏览页面时出现了严重的性能问题。您是否看到了一些优化的可能性或者问题可能出在哪里?

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; }


P粉199248808
P粉199248808

全部回复 (1)
P粉156415696

不需要重复查询以检查客户是否有已支付的订单,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文件中(或者插件中)。已测试并可正常工作。

    最新下载
    更多>
    网站特效
    网站源码
    网站素材
    前端模板
    关于我们 免责声明 Sitemap
    PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!