does know how integrate new google product reviews woocommerce?
google provide instructions below not sure how worth woo.
if can point me in right direction, appreciated!!
add opt-in code
to give customers option of submitting review of experience buying you, add opt-in module order confirmation page.
to add survey opt-in module order confirmation page:
paste following html snippet order confirmation page: <!-- begin gcr opt-in module code --> <script src="https://apis.google.com/js/platform.js?onload=renderoptin" async defer> </script> <script> window.renderoptin = function() { window.gapi.load('surveyoptin', function() { window.gapi.surveyoptin.render( { // required "merchant_id": merchant_id, "order_id": "order_id", "email": "customer_email", "delivery_country": "country_code", "estimated_delivery_date": "yyyy-mm-dd", // optional "opt_in_style": "opt_in_style" }); }); } </script> <!-- end gcr opt-in module code --> place code before closing </body> tag. when place survey module code badge code, order not matter: survey module code can before or after badge code.
Comments
Post a Comment