Display portion of short description on Shop products page
-
How can I display just a portion of the Short Description on the product listing page? I’ve added the following to pull the short description over (per https://www.ads-software.com/support/topic/short-description-below-product?replies=22 ).
add_action( ‘woocommerce_after_shop_loop_item_title’, ‘my_add_short_description’, 9 );
function my_add_short_description() {
echo ‘<span class=”title-description”>’ . the_excerpt() . ‘</span>
‘;
}How can I display say only 160px in height or only 10lines? Goal is to only have the price table visible, not the paragraph for each item.
https://jefferson-rentals.com/WP/product-category/equipment-rentals/air-compressors-air-tools/
- The topic ‘Display portion of short description on Shop products page’ is closed to new replies.