但是,默认的提示消息是You cannot add another’xxx’to your cart,并不是很友好,客户也不太容易理解。所以接下来我们需要再修改一下这个提示消息。
代码二:修改错误提示消息
//修改数量限制错误提示信息
function filter_woocommerce_cart_product_cannot_add_another_message( $message, $product_data ) {
// New text
$message = __( 'The template is a virtual product, which can be copied, and you only need to purchase the same template once, which is valid forever.', 'woocommerce' );
return $message;
}
add_filter( 'woocommerce_cart_product_cannot_add_another_message', 'filter_woocommerce_cart_product_cannot_add_another_message', 10, 2 );
上面的代码中【The template is a virtual product, which can be copied, and you only need to purchase the same template once, which is valid forever.】的内容可以自行修改。但有一点要注意,提示文本中的某些标点可能会和代码的相影响,比如【don’t】中的那个小点和代码中的点就有冲突,如果提示文本出现了这样的词,请修改一下。