Product description at checkout
-
Hi,
I need some help with a code snippet.
I’m using WooCommerce. I want to display the product’s short description below the product’s name at checkout.
I found a code snippet that helps me achieve that. It allows me to display the Product short description below the product’s name at checkout.
add_filter( 'woocommerce_get_item_data', 'wc_checkout_description_so_15127954', 10, 2 ); function wc_checkout_description_so_15127954( $other_data, $cart_item ) { $post_data = get_post( $cart_item['product_id'] ); $other_data[] = array( 'name' => $post_data->post_excerpt ); return $other_data; }
However, there’s a few issues. It adds a colon (:) at the end of the description, makes the text bold and capitalizes each word.
My product’s short description: https://ibb.co/NjD92Fv
Result: https://ibb.co/xJFTHxhCould someone please help me remove the colon (:), bold style and capitalization of each word?
Thanks in advance!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Product description at checkout’ is closed to new replies.