我想编辑我网站的这一部分,这是将产品添加到购物篮时在产品页面上弹出的横幅广告:
我已经浏览了WooCommerce文件夹中的每个文件,查找了“已添加到您的购物篮”文本字符串,从而确定了在此进行必要的更改。但是我在任何地方都找不到该字符串,因此对如何编辑此部分一无所知。
答案 0 :(得分:1)
使用wc_add_to_cart_message_html
过滤器它位于wc_add_to_cart_message
中的wc-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 );