Answer the question
In order to leave comments, you need to log in
How to add product description to Woocommerce cart?
guys, tell me how to add product description in woocommerce cart ///
Answer the question
In order to leave comments, you need to log in
Try adding this to functions
add_filter( 'woocommerce_cart_item_name', 'add_excerpt_in_cart_item_name', 10, 3 );
function add_excerpt_in_cart_item_name( $item_name, $cart_item, $cart_item_key ){
$excerpt = wp_strip_all_tags( get_the_excerpt($cart_item['product_id']), true );
$style = ' style="font-size:14px; line-height:normal;"';
$excerpt_html = '<br>
<p name="short-description"'.$style.'>'.$excerpt.'</p>';
return $item_name . $excerpt_html;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question