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?