我的网站上有两个产品,希望在向购物车添加不同产品时显示不同的消息(在消息中我想使用HTML)。现在它显示Product successfully added to cart.
我在我孩子的function.php中使用这段代码,但是它没有给我我想要的东西。
add_filter ( 'wc_add_to_cart_message', 'wc_add_to_cart_message_filter', 10, 2 );
function wc_add_to_cart_message_filter($message, $product_id = null) {
$titles[] = get_the_title( $product_id );
$titles = array_filter( $titles );
$added_text = sprintf( _n( '%s has been successfully added to your Basket.', '%s have been added to your Basket.', sizeof( $titles ), 'woocommerce' ), wc_format_list_of_items( $titles ) );
$message = sprintf( '%s <a href="%s" class="button">%s</a>',
esc_html( $added_text ),
esc_url( wc_get_page_permalink( 'cart' ) ),
esc_html__( 'View Cart', 'woocommerce' ));
return $message;
}
答案 0 :(得分:1)
由于WooCommerce 3 wc_add_to_cart_message
已被 wc_add_to_cart_message_html
取代,因为它已被弃用。根据产品ID(甚至产品类别),正确的定制方式可以添加到购物车消息中:
add_filter ( 'wc_add_to_cart_message_html', 'wc_add_to_cart_message_html_filter', 10, 2 );
function wc_add_to_cart_message_html_filter( $message, $products ) {
foreach( $products as $product_id => $quantity ){
// (If needed) get the WC_Product object
$product = wc_get_product( $product_id );
// The product title
$product_title = $product->get_title();
// Set Here a product category Id, name or slug (for example, if needed)
$product_category = "Clothing";
if( has_term( 'clothing', 'product_cat', $product_id ) ){
return __("My custom message for product category \"$product_category\" for $product_title ($product_id)", "woocommerce");
}
// Set HERE your first Product ID
if( $product_id == 37 ){
return __("My custom message 1 for $product_title ($product_id)", "woocommerce");
}
// Set HERE your Second Product ID
elseif( $product_id == 40 ){
return __("My custom message 2 for $product_title ($product_id)", "woocommerce");
}
}
return $message;
}
代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。
在WooCommerce 3+中测试并且有效。