搜尋

首頁  >  問答  >  主體

隱藏特定付款方式對於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粉283559033496 天前635

全部回覆(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
  • 取消回覆