rich-snippets

Text-overflow: ellipsis alignment issue

若如初见. 提交于 2020-03-05 06:52:06
问题 I have the product name and pricing as separate spans insides a link to work properly with Rich Snippets. Some products have larger length names than others so I'm truncating the length so it fits the box I have. Previously this was done on the server but I'd prefer to have it handled with CSS so any changes to the design doesn't involve the backend pages changing. The problem is I cannot make the spans line up next to each other. With tinkering the display attribute, the text-overflow

How to include “itemCondition” and “logo” schema tags in the schema.org product snippets?

余生长醉 提交于 2020-01-25 11:43:10
问题 I'm trying to add schema.org snippets to my products page. My client requested me to display following schema.org tags in the products single page 1) itemCondition 2) logo (display only the brand image URL) Schema.org gives only the tags description for each tags but haven't mentioned how it's should to be implement for most tags. Currently my snippet display as follows <div itemscope itemtype="http://schema.org/Product"> <img itemprop="image" src="/uploads/pen102-a13-olv_1.jpg" /> <span

How to include “itemCondition” and “logo” schema tags in the schema.org product snippets?

时光毁灭记忆、已成空白 提交于 2020-01-25 11:43:07
问题 I'm trying to add schema.org snippets to my products page. My client requested me to display following schema.org tags in the products single page 1) itemCondition 2) logo (display only the brand image URL) Schema.org gives only the tags description for each tags but haven't mentioned how it's should to be implement for most tags. Currently my snippet display as follows <div itemscope itemtype="http://schema.org/Product"> <img itemprop="image" src="/uploads/pen102-a13-olv_1.jpg" /> <span

Google Rich Snippets Not Working

杀马特。学长 韩版系。学妹 提交于 2020-01-20 04:20:47
问题 I'm working on a website for a friend (www.texasfriendlydds.com) and am trying to give them an edge with Rich Snippets that Google allegedly loves. It's a defensive driving school with 10 locations in the Austin area. I've placed the schema.org code within the address of each location, but while searching 'defensive driving austin' - I do not see any of the locations listed. I have 10 of the following code for each location(different address for each): <div itemscope itemtype="http://schema

It is possible to review a Person with structured data?

半城伤御伤魂 提交于 2020-01-14 19:23:06
问题 I have review data centered around people. I would like to represent these reviews with structured data. Something like this: (from here) This is what I tried: (It's a variation of the Google's Book example here) <div itemscope itemtype="http://schema.org/Person"> <h2> <span itemprop="honorificPrefix">Dr</span> <span itemprop="name">Joe Smith</span> </h2> <h3 itemprop="jobTitle">Doctor</h3> <div itemprop="description">Extra super Doctor</div> <div itemprop="aggregateRating" itemscope itemtype

Is it okay to use same schema.org markup twice on one page?

≯℡__Kan透↙ 提交于 2019-12-31 04:40:05
问题 On a product page I have two aggregated ratings for one product at different places, which means they contain identical information. I want to have them twice on that page due to ux reasons, but I'm not sure if I can markup them with schema.org everytime or if this would be a useless duplication. Wondered if there is a solution with itemref but in my opinion it's not helpful for this task. 回答1: Unless you use itemid , consumers can’t be sure that two (or more) items are (about) the same thing

Microdata for Product with Offer with Organization

会有一股神秘感。 提交于 2019-12-25 01:44:10
问题 I'm trying to create Google Rich Snippets for my Product page. I've created a Product using <div itemscope="" itemtype="http://schema.org/Product"> ... </div> Inside this product, I have an Offer, created with <div itemscope="" itemtype="http://schema.org/Product"> <div itemprop="offers" itemscope="" itemtype="http://schema.org/Offer"> ... </div> </div> I want to add the seller property (an Organization) to the Offer, however, my HTML structure have the seller under the Product and not under

Rich Snippets / Micro Data for Products: Error: Incomplete microdata with schema.org

喜夏-厌秋 提交于 2019-12-23 20:09:32
问题 I'm getting an 'Error: Incomplete microdata with schema.org.' message when testing the markup with Google's testing tool (http://www.google.com/webmasters/tools/richsnippets?q=uploaded:8004e2bf685980a2f0ffadd5c52b2d5f). I've simplified my code as much as possible, am I missing a certain 'required' type to get rid of this error? This is the only data I have available on my product pages at the moment. Thanks in advance! <div itemscope itemtype="http://schema.org/Product" id="productdetail">

Rich snippets in Google results

核能气质少年 提交于 2019-12-20 05:26:11
问题 I am looking to include rich snippets into a site I'm building to reflect a musician's upcoming tour schedule. I have done some searching on various musicians and have found a few which seem to follow a similar format. I have uploaded two screen shots below to show as an example of what I mean exactly. Example 1: Example 2: What is puzzling me is the fact that when I enter these sites into Google's Rich Snippet Test Tool, no data shows up. Furthermore, when I check the source for one of the

How to markup the last non linking item in breadcrumbs list using JSON-LD

这一生的挚爱 提交于 2019-12-19 16:55:43
问题 I am using structured data for my breadcrumbs trail. I'm refering to this documentation: https://developers.google.com/structured-data/breadcrumbs I have built up a breadcrumbs list. I also display the last item that refers to the current page but this is not a link but just plain text. This is what my HTML markup looks like: <ol class="breadcrumb"> <li><a href="http://www.example.com/">Home</a></li> <li><a href="http://www.example.com/brands">Brands</a></li> <li class="active">My Brand</li>