F
F
face20052018-08-04 15:49:03
WooCommerce
face2005, 2018-08-04 15:49:03

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

1 answer(s)
O
Orkhan Hasanli, 2018-08-04
@azerphoenix

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;
}

Source - https://stackoverflow.com/questions/47819801/displ...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question