Quote:
Originally Posted by autoescala
its easy , replace this:
Code:
<vb:if condition="$show['breadcrumb']">
<li class="navbit"><a href="{vb:raw nav_url}">{vb:raw nav_title}</a></li>
<vb:else />
<li class="navbit lastnavbit"><span>{vb:raw nav_title}</span></li>
</vb:if>
by
Code:
<vb:if condition="$show['breadcrumb']">
<div itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
<li class="navbit"><a href="{vb:raw nav_url}" itemprop="url"><span itemprop="title">{vb:raw nav_title}</span></a></li>
</div>
<vb:else />
<div itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
<li class="navbit lastnavbit"><span><span itemprop="title">{vb:raw nav_title}</span></span></li>
</div>
</vb:if>
|
I know, I got that part of the mod.
I have had this installed for weeks but it doesnt seem to be applying to threads.
And after testing a thread link with this tool...
http://www.google.com/webmasters/tools/richsnippets
I get this as a result,...
Quote:
Warning: Itemtype not recognized.
|
I would expect a result like this,..
Website > Catagory > Threadname
So what am I not understanding?