隱藏特定付款方式對於WooCommerce 5.6+版本的新客戶來說是可能的
P粉283559033
P粉283559033 2023-08-15 13:19:37
0
1
607
<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粉283559033
P粉283559033

全部回覆(1)
P粉985686557

不需要使用更重的查詢來檢查客戶是否有付費訂單,因為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檔案中(或外掛程式中)。已測試並可用。

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!