Not sure what has changed or if you updated your plugin but I am now seeing the optin appear at checkout and the badge but due to know reviews yet I have it set as not showing.
Another question ! Does your plugin include the code for product reviews? eg this extra code …see below
In your site’s source code, locate the new Google Customer Reviews opt-in module snippet shown in Step 2.
Below the “opt_in_style” line, add the new “products” line.
// OPTIONAL
“opt_in_style”: “OPT_IN_STYLE”,
“products”: [{“gtin”:”GTIN1″}]
The line above specifies the products in a customer’s order as an array of JSON “gtin” objects inside a “products” array. This line has just one “gtin” object, so it will enable Google Customer Reviews to collect a single GTIN for an order, regardless of how many products are part of the order. To collect a GTIN for every product in an order, you’ll need to add code to your site to dynamically add a “gtin” object to the “products” array for every distinct product in the order.
For example, an order that includes two distinct products should have a snippet that looks like this:
// OPTIONAL
“opt_in_style”: “OPT_IN_STYLE”,
“products”: [{“gtin”:”GTIN1″}, {“gtin”:”GTIN2″}]
And an order that includes three distinct products should have a snippet that looks like this:
// OPTIONAL
“opt_in_style”: “OPT_IN_STYLE”,
“products”: [{“gtin”:”GTIN1″}, {“gtin”:”GTIN2″}, {“gtin”:”GTIN3″}]
Replace “GTIN1”, “GTIN2”, “GTIN3” with actual numerical GTIN values.
Once you have correctly implemented the new code on your site, we’ll start collecting GTINs from orders placed on your site and gathering product reviews from your shoppers.
If it does to get product reviews I just need gtins for all my products ?
Thanks for any help!