add_filter( \'wc_add_to_cart_message\', \'my_add_to_cart_function\', 10, 2 );
function my_add_to_cart_function( $message, $product_id ) {
$message = sprintf(esc_html__(\'« %s » has been added by to your cart.\',\'woocommerce\'), get_the_title( $product_id ) );
return $message;
}
以上代码将帮助您更改消息。因为知道了钩子
wc_add_to_cart_message
您可以改进代码