0

我已经在我的网站上按照这个在线导师http://www.creare.co.uk/magento-product-schema添加了richsnippet 代码。但我看不到这里出现的架构代码是它如何显示的示例http://www.google.com/webmasters/tools/richsnippets?q=http%3A%2F%2Fbangbang.kz%2Fguitars%2Fukulele %2Fbajtursynova-159.html

我可以知道是否有任何问题。

如果有任何问题,你能给我一个关于我必须编辑哪些文件以及要添加哪些代码的想法。

4

1 回答 1

0

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,因为您的网站没有作者身份和发布者标记

如果您需要简单的方法,请使用谷歌网站管理员工具并在那里编辑产品标记

于 2014-05-02T21:54:04.067 回答