• Resolved Ivan Lopes

    (@ivanlopes)


    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 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Product description in archive page’ is closed to new replies.