Ildar Amankulov
Ildar Amankulov

Reputation: 526

How can I avoid 'A product is missing a field: google_product_category' warning in facebook microdata debugger tool?

The tool https://business.facebook.com/ads/microdata/debug gives me the warning

A product is missing a field: google_product_category            Without google_product_category information, your products may not appear the way you want them to in ads.

Which OpenGraph tag can I use to fix the problem?

The HTML code like

<meta property="google:product:category" content="Pet Supplies"/>
    or
<meta property="google_product_category" content="Pet Supplies"/>

doesn't work for me.

Upvotes: 1

Views: 2840

Answers (2)

iohan sandoval
iohan sandoval

Reputation: 369

this work too... I used it for multi-languages pages and works fine, just set the ids from google in google_product_category list

<meta property="product:category" content="233"/>

Upvotes: 0

Ildar Amankulov
Ildar Amankulov

Reputation: 526

I have found the solution

the right format is

<meta property="product:category" content="Apparel &amp; Accessories &gt; Clothing &gt; Dresses"/>

Upvotes: 9

Related Questions