Checkout Google Reviews & Email Date
-
Hi all, in relation to Google Reviews option at the checkout for WooCommerce. We used the following though noticing that the email is sent out from Google 7 days after the order is paid for. In most cases it can take 7-14 days for the customer to receive the order.
Can anyone suggest if its possible to delay the email sent from Google Reviews to 14 days instead of 7?
We asked Google Reviews team and they didnt know much, basically suggested that we contact our eCommerce support.
<script> window.renderOptIn = function() { window.gapi.load('surveyoptin', function() { window.gapi.surveyoptin.render( { // REQUIRED FIELDS "merchant_id": 0000000, "order_id": "<?php echo $order->get_id(); ?>", "email": "<?php echo $order->get_billing_email(); ?>", "delivery_country": "<?php echo $country_code; ?>", "estimated_delivery_date": "<?php echo $estimated_delivery_date; ?>", // OPTIONAL FIELDS //"products": [{"gtin":"GTIN1"}, {"gtin":"GTIN2"}] }); }); } </script>
we tried the following which we found online though it shows an error at the checkout when viewing source code.
// OPTIONAL FIELDS
//”products”: [{“gtin”:”GTIN1″}, {“gtin”:”GTIN2″}],
“delay_days”: 14,
});
});
}Any feedback is appreciated, take care.
- The topic ‘Checkout Google Reviews & Email Date’ is closed to new replies.