首页  >  问答  >  正文

隐藏特定支付方式对于WooCommerce 5.6+版本的新客户来说是可能的

<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粉283559033P粉283559033450 天前604

全部回复(1)我来回复

  • P粉985686557

    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文件中(或插件中)。已测试并可用。

    回复
    0
  • 取消回复