Hi I am facing issue with Google Rich snippets, in search, console getting errors like Either 'offers', 'review' or 'aggregateRating' should be specified
I can understand that google should no expect ratings for every product,...
<!-- GOOGLE RICH SNIPPETS -->
<span itemscope itemtype="
http://schema.org/Product">
<meta itemprop="name" content="<?php echo osc_esc_html(osc_item_title()); ?>" />
<meta itemprop="description" content="<?php echo osc_esc_html(osc_highlight(osc_item_description(), 500)); ?>" />
<?php if(osc_count_item_resources() > 0) { ?><meta itemprop="image" content="<?php echo osc_resource_url(); ?>" /><?php } ?>
</span>
it's possible to improve the above code to avoid reviews and offers errors in search console?
Thanks