Wednesday, April 16, 2014

Image

Achica

By: Photographed In: London Date Uploaded: 2013-01-25 Description: dasrfsdfsdrgsdf bhbh

Tuesday, April 8, 2014

Restaurant with Menu Schema

Fondue for Fun and Fantasy

Fantastic and fun for all your cheesy occasions.
Open:
Phone: 555-0100-3333
View our menu.

Address Schema

Delia's Daily Supplies

For your daily newspapers, candies, snacks and (via our in-store pharmacy) drugs and healthcare products to keep you and your family happy, healthy and supplied with all your daily needs.
Open:
Phone: 555-0100-1110
Unit 42, Land of Bargains Shopping Paradise, 12 Highway 101, Boston, MA, USA

Philippa's Pharmacy

A superb collection of fine pharmaceuticals...
Open:
Phone: 555-0100-1111

Tuesday, February 5, 2013

Test Schema Secrets in Simple Way

After publishing 6 posts for different schema's for Google search results I learned about these schema's:



1. Person
2. Product
3. Event
4. Movie
5. Book
6. Review

Here you can get simple code for different type of schema's ... JUST PASTE and DONE !!! Use Structured Data Testing Tool to check schema preview.

CASE I : 

    If we verify authorship for a domain or URL only "review schema" will work.

****************************************************************

CASE II: 

       To get other schema's in search results we must avoid authorship, though sometime you may get error of authorship verification in Structured Data Testing Tool but your schema will work fine.

Let's discuss them one by one with implementation code:

Person Schema

For Code Visit here

 Using it you will get something like this:


Product Schema

For Code Visit Here
This schema will show your products rating, reviews and price in search results like this:




Event Schema (Not Successful for me)

For Code Visit Here

I had double checked the schema code but I didn't get success in it.




Movie/Video Schema

For Code Visit Here

Little bit interesting but still so many features missing like rating, duration.


Books Schema

For Code Visit Here
99% successful but trying to add No. of pages in book




Review Schema

For Code Visit Here
The only schema which was 100% successful in first span



Review Schema

Sunny Ujjawal
12
Date published: 02/22/2013
5 / 5 stars

Code:

<div itemscope itemtype="http://schema.org/Review">
<div itemprop="name"><strong>Sunny Ujjawal</strong></div>
<div itemprop="author" itemscope itemtype="http://schema.org/Person">
Written by: <span itemprop="name">Sunny Kumar Ujjawal</span></div>
<div itemprop="itemReviewed" itemscope itemtype="http://schema.org/Thing">
<span itemprop="name">12</span></div>
<div><meta itemprop="datePublished" content="2013-02-22">Date published: 02/22/2013</div>
<div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<meta itemprop="worstRating" content="2"><span itemprop="ratingValue">5</span> / <span itemprop="bestRating">5</span> stars</div>
</div>

Book Schema

The Catcher in the Rye - Mass Market Paperback by
4 stars - 3077 reviews
Price: $6.99 In Stock

Code:

  1. <div itemprop="breadcrumb">
  2.   <a href="category/books.html">Books</a> >
  3.   <a href="category/books-literature.html">Literature & Fiction</a> >
  4.   <a href="category/books-classics">Classics</a>
  5. </div>

  6. <div itemscope itemtype="http://schema.org/Book">

  7. <img itemprop="image" src="catcher-in-the-rye-book-cover.jpg" />
  8. <span itemprop="name">The Catcher in the Rye</span> -
  9.  <link itemprop="bookFormat" href="http://schema.org/Paperback">Mass Market Paperback
  10. by <a itemprop="author" href="/author/jd_salinger.html">J.D. Salinger</a>

  11. <div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
  12.   <span itemprop="ratingValue">4</span> stars -
  13.   <span itemprop="reviewCount">3077</span> reviews
  14. </div>

  15. <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
  16.   Price: <span itemprop="price">$6.99</span>
  17.   <meta itemprop="priceCurrency" content="USD" />
  18.   <link itemprop="availability" href="http://schema.org/InStock">In Stock
  19. </div>