Mobile app version of vmapp.org
Login or Join
Jennifer507

: Is there a problem in having same product with different names in different pages? When it comes to structured data, schema.org for products, is there a problem in having the same product with

@Jennifer507

Posted in: #Microdata #SchemaOrg

When it comes to structured data, schema.org for products, is there a problem in having the same product with 2 different names in 2 different pages for layout reasons?

Example: Category page with many products. Objects appear in smaller divs that don't fit complete name vs product page totally dedicated to one product that fits all the information.

Category Page:

<span itemprop="name">Dell 30" Monitor</span>


Product Page:

<span itemprop="name">Dell UltraSharp 30" LCD Monitor</span>

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Jennifer507

1 Comments

Sorted by latest first Latest Oldest Best

 

@Ogunnowo487

From the Schema.org perspective, it’s fine. But how consumers handle it is a different matter.

If it’s only about displaying the shorter name, you could use a meta element to provide the actual/long product name:

<span>Dell 30" Monitor</span>
<meta itemprop="name" content='Dell UltraSharp 30" LCD Monitor' />


You could even provide multiple name properties, if you think that’s useful (how consumers interpret this is, again, up to them):

<span itemprop="name">Dell 30" Monitor</span>
<meta itemprop="name" content='Dell UltraSharp 30" LCD Monitor' />

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme