WooCommerce, Add Short or Long Description to Products on Shop Page

Add Description Product Shop Woocommerce

…Shop Page * * @link https://wpbeaches.com/woocommerce-add-short-or-long-description-to-products-on-shop-page */ function wc_add_long_description() { global $product; ?> <div itemprop=”description”> <?php echo apply_filters( ‘the_content’, $product->get_description() ) ?> </div> <?php } Adding the Short Description to…

Read More