Can we get a field added for expected delivery date so we can utilize The FREE Google product reviews that show up on google product search results....
all we need is a field that asks how many days to estimated delivery... make it something we can change or static that's good for all orders....
I don't know if there is some quick way to pull the date off the server and add four days to it and insert it in that field or not... Any suggestions?
This is the link to google that explains it all. <script src="https://apis.google.com/js/platform.js?onload=renderOptIn" async defer></script>
This is the code you need to include on checkout for Google to send the customer a request to rate your webstore/company.... we have everything but the expected delivery date.
<script>
window.renderOptIn = function() {
window.gapi.load('surveyoptin', function() {
window.gapi.surveyoptin.render(
{
"merchant_id": GOOGLE MERCHANT ID,
"order_id": "ORDER_ID",
"email": "CUSTOMER_EMAIL",
"delivery_country": "COUNTRY_CODE",
"estimated_delivery_date": "YYYY-MM-DD"
});
});
}
</script>
Were really anxious to get this going so we can start showing some reviews and ratings on google and boost sales...!!!!
Any help is appreciated even if it's a stop gap work around solution!!
ZASales