我們豐富的片段突然消失已經超過4個月,GWT中報告了一些錯誤,我糾正了所有錯誤,錯誤現在正在減少(僅剩下5個)。這裏是我的代碼:我的結構數據有什麼問題?
<section class="c-center" itemscope itemtype="http://schema.org/Product">
<div>
<h1><span itemprop="name">Product name</span> <span itemprop="brand" class="brand"><a href="/link-to-brand/">Brand of product</a></span></h1>
<div id="reviews" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<div class="rating">
<meta itemprop="ratingValue" content="4.8" />
<meta itemprop="ratingCount" content="56" />
<div class="fill" style="width:96%"></div>
<div class="stars"></div>
</div>
<div class="rating-info">
<a href="#ratings-reviews">Based on 56 reviews</a> - <a href="#">Write a review</a>
</div>
</div>
</div>
<div id="img">
<img src="/link-to-image.jpg" alt="Img alt" itemprop="image" />
</div>
<div id="info">
<meta itemprop="url" content="site.com/link-of-product/">
<div id="price-container" itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<meta itemprop="priceCurrency" content="EUR">
<meta itemprop="gtin13" content="1234567899999">
<span class="price" itemprop="price">19,95 €</span> <del>28,50 €</del> -
<span class="stock"><link itemprop="availability" href="http://schema.org/InStock">Available</span>
</div>
</div>
</section>
這裏是我的問題:
1 - 有什麼不對?
2 - 我已經在很多帖子看出,貨幣不應該在itemprop="price"
但在谷歌的例子,他們不包括它!我該怎麼辦?
3-我應該使用ratingCount
還是reviewCount
?
4-一些產品在不同大小存在不同的價格,最好先包括AggregateOffer
與最低和最高價格是多少?
非常感謝
感謝Mousey的詳細回覆。 其實現在什麼都沒有出現,它在4或5個月前消失了! :/ 好的價格標籤,我會分開貨幣和價格本身。 以及問題3和4? :) 謝謝 – Websphere
q3如果你想在片段中的星星,他們是評分而不是文字評論使用ratingCount。如果您有完整的評價,請使用reviewCount。詳細信息在http://schema.org/AggregateRating上 - 正如您在結構化數據linter中看到的星星出現的一樣,所以它看起來是正確的。使用您的URL檢查linter和google結構化數據測試人員,確保數據得到識別。 q4-據我所知,沒有報價總計,用'itemprop =「offer」'屬性嵌套高價和低價。更改通常在手動重新獲取頁面後顯示3-4天,如果不檢查語法錯誤 – Mousey
實際上,linter會顯示starsCount和reviewCount的星星,這就是爲什麼我想知道應該使用哪一個!
關於綜合報價,我看到它在此頁上:[鏈接](https://developers.google.com/structured-data/rich-snippets/products) 我已經手動提取不同的網址,但他們仍然沒有顯示在谷歌結果頁:(語法和所有的代碼是正確的。我現在只有2個錯誤留在GWT,我會等到我沒有更多的錯誤,並希望所有將恢復正常! – Websphere