删除wooccommerce购物车更新消息


Remove woocommerce cart updated message?

当我更新购物车中的数量时,它将显示"购物车更新"消息。

如何删除或禁用它?我只是不想露面。只是"购物车更新消息"

几年后,我也在寻找同样的东西。答案是这样的。当您通过woocommerce_add_message过滤器更改购物车数量时,您可以更改弹出的消息。

更改:

add_filter('woocommerce_add_message', 'se53209949_woocommerce_add_message', 10, 0);
function se53209949_woocommerce_add_message() {
    return __('your message', 'YOUR-THEME-TEXTDOMAIN');
}

删除它:

add_filter('woocommerce_add_message', '__return_false');

适当尝试这个

add_filter('gettext', 'wpse_124400_woomessages', 10, 3);
/**
* change some WooCommerce labels
* @param string $translation
* @param string $text
* @param string $domain
* @return string
*/
function wpse_124400_woomessages($translation, $text, $domain) {
    if ($domain == 'woocommerce') {
        if ($text == 'Cart updated.') {
            $translation = 'Basket updated.';
        }
    }
    return $translation;
}

但是要使用wordpress功能来更改其信息希望这能奏效吗?