google-rich-snippets

Multiple Schema.org Product items & how will it look like in search engine result?

心不动则不痛 提交于 2019-12-24 13:05:03
问题 I have implemented the Product Schema.org type similar to this on one single page: <div itemscope itemtype="http://schema.org/Product"> <span itemprop="name">Test name 1</span> <img src="test1.jpg" /> <span itemprop="description">Description test 1</span> <span itemprop="sku">#001</span> </div> <div itemscope itemtype="http://schema.org/Product"> <span itemprop="name">Test name 2</span> <img src="test2.jpg" /> <span itemprop="description">Description test 2</span> <span itemprop="sku">#002<

What is the priceRange parameter for Google Structured Data Reviews?

对着背影说爱祢 提交于 2019-12-23 17:39:42
问题 I am trying to determine what are the acceptable values for the priceRange parameter. On Google I see "$$$" and that's it. Can someone explain if I should be using $$$ literally or a decimal amount. 回答1: It seems there is no "standard" for this, and probably is born out of the rating system for Restaurants. It seems the convention is: $ = Inexpensive, usually $10 and under $$ = Moderately expensive, usually between $10-$25 $$$ = Expensive, usually between $25-$45 $$$$ = Very Expensive,

Is it possible to change Microdata itemprop with jQuery?

大兔子大兔子 提交于 2019-12-23 03:15:25
问题 Here is the code that shows success in console log but fails when tested with Google's Structured Data Testing Tool or with G+ share button. The original values remain. In this case "jack" never updates to "jill". var newName= "jill" $("h1").attr('itemprop','name').html(newName); Here is the Microdata: <body itemscope itemtype="http://schema.org/Blog"> <div style="display:none;"> <h1 itemprop="name">jack</h1> <img itemprop="image" src="http://somehewhere.com/something.png" /> <p itemprop=

Errors in Microdata for image/logo as part of a BlogPosting

こ雲淡風輕ζ 提交于 2019-12-20 05:12:30
问题 I am having an issue getting a publisher logo and blog post image to validate using Google's Structured Data Testing Tool. Some sample markup of what I currently have is: <article class="post" itemscope itemprop="blogPost" itemtype="http://schema.org/BlogPosting"> <div class="preview"> <h2 itemprop="mainEntityOfPage headline"><a href="/blog/improving-the-patient-experience-through-the-revenue-cycle-part-1">Improving the Patient Experience through the Revenue Cycle Part 1</a></h2> <div class=

Errors in Microdata for image/logo as part of a BlogPosting

北慕城南 提交于 2019-12-20 05:12:24
问题 I am having an issue getting a publisher logo and blog post image to validate using Google's Structured Data Testing Tool. Some sample markup of what I currently have is: <article class="post" itemscope itemprop="blogPost" itemtype="http://schema.org/BlogPosting"> <div class="preview"> <h2 itemprop="mainEntityOfPage headline"><a href="/blog/improving-the-patient-experience-through-the-revenue-cycle-part-1">Improving the Patient Experience through the Revenue Cycle Part 1</a></h2> <div class=

Schema.org: What to use, Microdata or JSON-LD?

吃可爱长大的小学妹 提交于 2019-12-20 02:59:05
问题 The data markup Schema.org for search sites like Google, Yahoo!, Bing and Yandex is great for snippets. However, I perceive that most of webmasters use Microdata and almost never use JSON-LD. I learned about JSON-LD recently and I have some doubts: Could I use it without compability problems with search engine? 回答1: There can’t be a general answer: Each consumer (search engine, tool, etc.) has its own conditions (what it supports for which feature). Each syntax (JSON-LD, Microdata, RDFa, etc.

Omitting price property for sold products?

邮差的信 提交于 2019-12-19 10:50:55
问题 I'm adding Schema.org (using Microdata) to a product page. My client wants the price omitted for sold products - she doesn't want anyone to be able to see the price of sold products. However this was showing up as an error in the Microdata for 'price': check page in Google SDTT Obviously the average user will still not be able to see the price, but it's used by Google Shopping so might show up. Should I just put a price of 0? 回答1: It’s perfectly fine to have an Offer without a price . If

“price: missing and required” although PriceSpecification is used

孤者浪人 提交于 2019-12-14 03:59:53
问题 I am trying to implement Schema.org on our product pages, but I am getting an error relating to Offer when testing in Google's Testing Tool. The errors says price is required but I figured since I used PriceSpecification I didn't need to specify price . Here is the error: Here is the format of the HTML+Microdata that I am using: <div itemscope itemtype="http://schema.org/Product"> <img itemprop="image" src="https://kng.scene7.com/is/image/kng/1046-set?$prodpage$" /> <h1 itemprop="name">Waist

Google sitelinks search box snippet doesn't work

喜夏-厌秋 提交于 2019-12-13 14:52:57
问题 I'm trying to implement the snippet for the sitelinks search box on Google, according to the documentation in https://developers.google.com/webmasters/richsnippets/sitelinkssearch. My implementation is the following: <script type="application/ld+json"> { "@context": "http://schema.org", "@type": "WebSite", "url": "http://www.petmd.com/", "potentialAction": { "@type": "SearchAction", "target": "http://www.petmd.com/search?Q={Q}", "query-input": "required name=Q" } } </script> The target works

Where do I put Google's JSON-LD structured data?

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-13 02:27:07
问题 I am trying to create Googles structured data no clue what I am doing. I set it up as an Organization then used the SD markup tool for all my products. I put each JSON-LD product inside it's own script tag directly from the markup tool vs. nesting. Then I put this in a .js file on my server. I linked it in my header with this <script src="../Scripts/structureddata.js"></script> I had tested it in the SD tool using the url and it didn't see it. Then I copied the structureddata.js into the tool