0

We've been trying to get Google Rich Snippets working on the site for months now. We fixed some JavaScript errors a while back that were definitely contributing to the problem, but going on 12 weeks later still no joy. When I use Google's Structured Data Tester no errors are found, but there are various "Unspecified type" messages on each page (see screenshot). Google Structured Data Tester output Google Structured Data Tester

My question: does anyone know if this could be contributing to the Google Rich Snippets not working correctly? I've basically exhausted every other possibility and holding out for divine intervention at this point....

Thanks in advance,

Paul

Realto619
  • 301
  • 3
  • 13

1 Answers1

0

The structured data testing tool is now used to test rich snippets, so yes that is what you need to fix. From your link it appears that the errors come from 4 hyperlinks which is all outside the scope of the http://schema.org/Product and http://schema.org/Offer - the <div> and <form> tags end before them.

If this answer isn't enough for you to work from then can you explain what these 4 links mean? I can't give you what the code should be because it's unclear what these 4 links are for and where the should be in the structured data. Are they similar products? And they multiple offers for the same product?

Mousey
  • 1,855
  • 19
  • 34
  • The four "unspecified type" links are to images that appear on the product description page on a Magento site for that particular product. Is there some way to connect the dots and associate those images with the product so they're no longer "unspecified type(s)" The PDP page: http://www.northshorecare.com/browse-brands/northshore-brands/northshore-magicsorb-disposable-underpads.html – Realto619 Sep 09 '15 at 08:16
  • Once you sort out the itemscope issue so that the
    or other tag for http://schema.org/Product has the image nested inside it, all you need to do it as the **image** property to the `` tag using `itemprop` - start with `
    MagicSorb` then add: `MagicSorb Disposable Underpad` and anything else then close div `
    ` Multiple images are allowed for the same product.
    – Mousey Sep 09 '15 at 14:41
  • So take this content: https://jsbin.com/yeketa/edit?html,output and convert it to this? https://jsbin.com/copono/edit?html,output by adding itemscope and itemtype to the img tags? – Realto619 Sep 15 '15 at 09:13
  • I can't see the code in your links. All you do is add **itemprop=image** inside the ` tags. No need for the `itemscope itemtype=` unless you want to add more information about the image. – Mousey Sep 21 '15 at 00:05