In the item_php file, find the lines
<!-- 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 $resource_url; ?>" /><?php } ?>
</span>
replaced by
<!-- GOOGLE RICH SNIPPETS -->
<div style="display: none" 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 itemprop="offers" itemscope itemtype="
http://schema.org/Offer">
<meta itemprop="price" content="<?php echo osc_item_price()/1000000; ?>" /><?php if(osc_item_price() <> '' and osc_item_price() <> 0) { ?>
<meta itemprop="priceCurrency" content="<?php echo osc_item_currency(); ?>" /><?php } ?>
<meta itemprop="priceValidUntil" content=" <?php echo (date('Y', strtotime(osc_item_field('dt_expiration'))) > 3000 ? __('Never expire', 'epsilon') : __('Expire on', 'epsilon') . ' ' . date('d/m/Y', strtotime(osc_item_field('dt_expiration')))); ?> ">
<meta itemprop="url" content="<?php echo osc_item_url(); ?>">
<link itemprop="availability" href="
http://schema.org/InStock" />
</span>
</div>