url地址区分大小写,
type: http://schema.org/product
type: http://schema.org/offer
type: http://schema.org/aggregaterating
那个 url 是错误的,你输入了错误的 url 来标记正确的 url 是:
type: http://schema.org/Product
type: http://schema.org/Offer
type: http://schema.org/AggregateRating
你看到区别了吗?
打开您的模板/目录/产品/view.phtml
div class=”product-essential”: Insert the itemtype
<div class="product-essential" itemscope itemtype="http://schema.org/Product">
div class=”product-name”: Insert the product name
<div class="product-name" itemprop="name">
div class=”std”: Insert the product description
<div class="std" itemprop="description">
打开您的模板/目录/产品/视图/media.phtml
img id=”image: Insert the product image type
<img id="image" itemprop="image"
打开您的模板/目录/产品/视图/type/default.phtml
如果您没有包装整个代码块的 div,请粘贴以下内容,如果您确实更改了它。
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
class=”price-block”: Insert the product price
<div class="price-block" itemprop="price">
Comment out “echo $this->__(‘Availability:’)” and insert this before it
<link itemprop="availability" href="http://schema.org/InStock">
打开你的模板/review/helper/summary.phtml
<span itemprop="aggregateRating" itemscope
itemtype="http://schema.org/AggregateRating"> <?php if
($this->getReviewsCount()): ?> <meta itemprop="ratingValue"
content="<?php echo $this->getRatingSummary(); ?>"/> <meta
itemprop="reviewCount" content="<?php echo $this->getReviewsCount();
?>" /> <meta itemprop="bestRating" content="100"/> <meta
itemprop="worstRating" content="0"/> …. </span>
我还建议您注册 google Plus,因为您的网站没有作者身份和发布者标记
如果您需要简单的方法,请使用谷歌网站管理员工具并在那里编辑产品标记