添加到购物车

时间:2016-08-19 11:40:53

标签: php wordpress woocommerce action cart

点击按钮添加到购物篮后,我有一条消息 -

  

"产品名称"已成功添加到购物车。

在产品之前我想添加另一个自定义消息(供参考我添加了屏幕截图)

我应该使用什么钩子?

2 个答案:

答案 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 &rarr;', '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 &rarr;', 'woocommerce'), __('Product successfully added to your cart.', 'woocommerce') );
    endif;
        return $message;
}
/* Custom Add To Cart Messages */

Reference

答案 1 :(得分:-1)

在这里你可以尝试这个钩子:

https://therichpost.com/cart-notices-woocommerce

希望这可以帮助你..