0

我想编辑我网站的这一部分,它是当您将产品添加到购物篮时产品页面上弹出的横幅:

WooCommerce 横幅

我查看了 WooCommerce 文件夹中的每个文件中的文本字符串“已添加到您的购物篮”,认为这是我需要进行更改的地方。但是我在任何地方都找不到该字符串,因此不知道如何编辑此部分。

4

1 回答 1

1

使用wc_add_to_cart_message_htmlfilter 它wc_add_to_cart_messagewc-cart-functions.php.

例子:

add_filter('wc_add_to_cart_message_html', function( $old_message, $products ) {
    $new_message = '<span> new message </span>';
    return $new_message;
}, 100, 2 );
于 2018-08-09T16:02:10.640 回答