搜尋

首頁  >  問答  >  主體

在WooCommerce 8+中為新客戶隱藏特定的付款方式

<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>
P粉199248808P粉199248808464 天前558

全部回覆(1)我來回復

  • P粉156415696

    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檔案中(或外掛程式中)。已測試並可正常運作。

    回覆
    0
  • 取消回覆