- 14
I'm getting errors from Google search console: "Missing field "name", Missing field "price", Either "offers", "review", or "aggregateRating" should be specified
The bug is related to nopcommerce 4.30 (https://github.com/nopSolutions/nopCommerce/issues/4129) microdata was moved to a separate view, and in Emporium Theme there is a duplicate of "itemscope itemtype="http://schema.org/Product"" attributes.
Files: ProductTemplate.Simple.cshtml and ProductTemplate.Grouped.cshtml
Line 65: <div itemscope itemtype="http://schema.org/Product" data-productid="@Model.Id">
Removing it fixes the problem.
The bug is related to nopcommerce 4.30 (https://github.com/nopSolutions/nopCommerce/issues/4129) microdata was moved to a separate view, and in Emporium Theme there is a duplicate of "itemscope itemtype="http://schema.org/Product"" attributes.
Files: ProductTemplate.Simple.cshtml and ProductTemplate.Grouped.cshtml
Line 65: <div itemscope itemtype="http://schema.org/Product" data-productid="@Model.Id">
Removing it fixes the problem.