如何编辑WooCommerce“添加到购物篮”横幅

时间:2018-08-09 15:07:11

标签: wordpress woocommerce woocommerce-theming

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

WooCommerce banner

我已经浏览了WooCommerce文件夹中的每个文件,查找了“已添加到您的购物篮”文本字符串,从而确定了在此进行必要的更改。但是我在任何地方都找不到该字符串,因此对如何编辑此部分一无所知。

1 个答案:

答案 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 );