Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 59525

Product description in archive page

$
0
0

Replies: 0

Hi there, im trying to add product description in archive page with this hook

add_action( 'woocommerce_after_shop_loop_item_title', 'woo_show_excerpt_shop_page', 5 );
function woo_show_excerpt_shop_page() {
	global $product;

    echo apply_filters( 'woocommerce_short_description', $product->get_short_description() );
}

but the description shows at the top of the image. how can i show the description after the title please?


Viewing all articles
Browse latest Browse all 59525

Trending Articles