Mobile app version of vmapp.org
Login or Join
Bryan171

: Why does this Microdata not validate in the Google tool? The name property (in the meta tag) is not recognised in the Google Webmasters validation tool. Why is this? <table itemscope itemtype="http://schema.org/Product

@Bryan171

Posted in: #GoogleRichSnippetsTool #Html #Microdata

The name property (in the meta tag) is not recognised in the Google Webmasters validation tool. Why is this?

<table itemscope itemtype="http://schema.org/Product">
<meta itemprop="name" content="An idea suitable for potential candidate for the fourth plinth" />
<tr>
<td class="label">Suitable for</td><td>potential candidate for the fourth plinth</td>
</tr>
<tr itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<td class="label">Price</td><td itemprop="price">£1000</td>
</tr>
<tr>
<td class="label">Notes</td><td>None</td>
</tr>
</table>

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Bryan171

1 Comments

Sorted by latest first Latest Oldest Best

 

@Fox8124981

The error occurs because the product name is not visible, it is placed incorrectly in a table structure.

A simple change to:

<table itemscope itemtype="http://schema.org/Product">

<tr>
<td class="label">
<meta itemprop="name" content="An idea suitable for potential candidate for the fourth plinth" />Suitable for
</td>
<td>potential candidate for the fourth plinth
</td>
</tr>
<tr itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<td class="label">Price</td><td itemprop="price">£1000</td>
</tr>
<tr>
<td class="label">Notes</td><td>None</td>
</tr>




Will make it work.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme