diff --git a/includes/class-wc-structured-data.php b/includes/class-wc-structured-data.php index aa67443cb23..e2c8aa7b79b 100644 --- a/includes/class-wc-structured-data.php +++ b/includes/class-wc-structured-data.php @@ -211,7 +211,7 @@ class WC_Structured_Data { 'availability' => 'https://schema.org/' . $stock = ( $product->is_in_stock() ? 'InStock' : 'OutOfStock' ), 'sku' => $product->get_sku(), 'image' => wp_get_attachment_url( $product->get_image_id() ), - 'description' => $product->get_description(), + 'description' => wpautop( do_shortcode( $product->get_description() ) ), 'seller' => array( '@type' => 'Organization', 'name' => $shop_name,