点击按钮添加到购物篮后,我有一条消息 -
"产品名称"已成功添加到购物车。
在产品之前我想添加另一个自定义消息(供参考我添加了屏幕截图)。
我应该使用什么钩子?
答案 0 :(得分:3)
试试这个。
/**
* Custom Add To Cart Messages
* Add this to your theme functions.php file
**/
add_filter( 'wc_add_to_cart_message', 'custom_add_to_cart_message' );
function custom_add_to_cart_message() {
global $woocommerce;
// Output success messages
if (get_option('woocommerce_cart_redirect_after_add')=='yes') :
$return_to = get_permalink(woocommerce_get_page_id('shop'));
$message = sprintf('<a href="%s" class="button">%s</a> %s', $return_to, __('Continue Shopping →', 'woocommerce'), __('Product successfully added to your cart.', 'woocommerce') );
else :
$message = sprintf('<a href="%s" class="button">%s</a> %s', get_permalink(woocommerce_get_page_id('cart')), __('View Cart →', 'woocommerce'), __('Product successfully added to your cart.', 'woocommerce') );
endif;
return $message;
}
/* Custom Add To Cart Messages */
答案 1 :(得分:-1)
在这里你可以尝试这个钩子:
https://therichpost.com/cart-notices-woocommerce
希望这可以帮助你..