消除 WooCommerce 中聲明「購物車為空時無法結帳」的通知。
P粉336536706
P粉336536706 2023-11-17 11:41:02
0
1
627

我應該在 functions.php 中加入哪些程式碼來刪除「購物車為空時無法結帳」。 Woocommerce 中的通知。

我在includes/wc-template-functions.php中找到了負責顯示此訊息的程式碼。

// When on the checkout with an empty cart, redirect to cart page.
if ( is_page( wc_get_page_id( 'checkout' ) ) && wc_get_page_id( 'checkout' ) !== wc_get_page_id( 'cart' ) && WC()->cart->is_empty() && empty( $wp->query_vars['order-pay'] ) && ! isset( $wp->query_vars['order-received'] ) && ! is_customize_preview() && apply_filters( 'woocommerce_checkout_redirect_empty_cart', true ) ) {
    wc_add_notice( __( 'Checkout is not available whilst your cart is empty.', 'woocommerce' ), 'notice' );
    wp_safe_redirect( wc_get_cart_url() );
    exit;

}

覆蓋核心檔案不是一個選項,有什麼建議嗎?

P粉336536706
P粉336536706

全部回覆(1)
P粉561438407

您可以使用woocommerce_checkout_redirect_empty_cart過濾器掛鉤。由於僅當此條件為真時才會顯示該訊息

add_filter( 'woocommerce_checkout_redirect_empty_cart', '__return_false' );

另一種選擇是使用 woocommerce_add_notice 過濾器掛鉤,如果訊息匹配,則傳回 false

function filter_woocommerce_add_notice ( $message ) {
    // Equal to (Must be exactly the same).
    // If the message is displayed in another language, adjust where necessary!
    if ( $message == 'Checkout is not available whilst your cart is empty.' ) {
        return false;
    }   
    
    return $message;
}
add_filter( 'woocommerce_add_notice', 'filter_woocommerce_add_notice', 10, 1 );
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!