rich snippets in joomla - #jug073

36
hans2103 2 september 2013

Upload: hans-kuijpers

Post on 05-Dec-2014

1.483 views

Category:

Education


3 download

DESCRIPTION

Do you more clicks to your website from Google Search results? Use Rich Snippets. Hans Kuijpers explained how to implement a couple of Rich Snippets during his presentation at Joomla User Group 's-Hertogenbosch The Netherlands.

TRANSCRIPT

Page 1: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013hans2103 2 september 2013

Page 2: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

Page 3: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

Page 4: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

Page 5: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

Page 6: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

Page 7: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

Page 8: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

Page 9: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

markup<div> <h1>Avatar</h1> <span>Director: James Cameron (born August 16, 1954)</span> <span>Science fiction</span> <a href="../movies/avatar-theatrical-trailer.html">Trailer</a></div>

Page 10: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

itemscope<div itemscope> <h1>Avatar</h1> <span>Director: James Cameron (born August 16, 1954) </span> <span>Science fiction</span> <a href="../movies/avatar-theatrical-trailer.html">Trailer</a></div>

Page 11: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

<div itemscope itemtype="http://schema.org/Movie"> <h1>Avatar</h1> <span>Director: James Cameron (born August 16, 1954)</span> <span>Science fiction</span> <a href="../movies/avatar-theatrical-trailer.html">Trailer</a></div>

itemtype

Page 12: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

itemprop<div itemscope itemtype ="http://schema.org/Movie"> <h1 itemprop="name">Avatar</h1> <span>Director: <span itemprop="director">James Cameron</span> (born August 16, 1954)</span> <span itemprop="genre">Science fiction</span> <a href="../movies/avatar-theatrical-trailer.html" itemprop="trailer">Trailer</a></div>

Page 13: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

embedded items<div itemscope itemtype ="http://schema.org/Movie"> <h1 itemprop="name">Avatar</h1> <div itemprop="director" itemscope itemtype="http://schema.org/Person"> Director: <span itemprop="name">James Cameron</span> (born <span itemprop="birthDate">August 16, 1954)</span> </div> <span itemprop="genre">Science fiction</span> <a href="../movies/avatar-theatrical-trailer.html" itemprop="trailer">Trailer</a>

Page 14: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

hopsakee... aan de slag!

Page 15: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

Page 16: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

Page 17: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

https://plus.google.com/u/5/116775654289439490891/

events aanmaken via eigen Google+ pagina

Page 18: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

Gekoppeld aan Gmail Calendar

Page 19: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

naar Joomla via GCalender

Page 20: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

presenteren via module GCalendar Upcoming

Page 21: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

met Rich Snippets verrijkte code

Page 22: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

<ul itemscope itemtype="http://schema.org/MusicGroup"> <meta itemprop="name" content="Anton Goudsmit"/> <meta itemprop="url" content="http://antongoudsmit.nl"/> <meta itemprop="description" content="Anton Goudsmit is one of Hollands leading jazzguitarists. Co-founder of and guitarist for the progressive Dutch jazz-acts The Ploctones, Estafest and New Cool Collective. In 2010, he received the Boy Edgar Prize. Source:Last.fm"/> {{#events}} <li itemprop="event" itemscope itemtype="http://schema.org/Event"> <meta itemprop="location" content="{{location}}"/> <meta itemprop="startDate" content="{{date}}"/> {{date}} <br /> <a itemprop="url" href="{{{backlink}}}"><span itemprop="name">{{title}}</span></a> </li> {{/events}}</ul>{{^events}}{{emptyText}}{{/events}}

schema.org/MusicGroup

Direct in PHPMyAdmin verwerken en voorkom dat Joomla code stript.

Page 23: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

Rich Snippets Testing Tool

Page 24: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

Page 25: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

Connected to my Google+

Page 26: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

voeg website toe aan je Google+

Page 27: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

template override van com_content

haal con_position op uit tabel contact_details

Page 28: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

Google+ url verwerken in veld Positie

Page 29: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

Rich Snippets Testing Tool

Page 30: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

beter resultaat met data-vocabulary.org

Page 31: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

eenvoudige template override

Page 32: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

Rich Snippets Testing Tool

aanklikbaar subcategorie

Page 33: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

http://www.ebusiness-unibw.org/tools/grsnippetgen/

Page 34: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

handig aangemaakt via GoodRelations

Page 35: Rich Snippets in Joomla - #JUG073

hans2103 2 september 2013

nu jij!have fun