Google Customer Reviews
For an online store, an easy way to establish/increase credibility is to use Google Customer Reviews! Google is the most used search engine and almost everyone shopping online starts their journey from the Google search bar. Now with Google Shopping, it has become more significant to incorporate Google Services in your Online Store, especially the ones that are free!
Contents
- What are Google Customer Reviews?
- Requirements
- How to Set Up Customer Reviews for your Online Store?
- Product Ratings
What are Google Customer Reviews?
A free service from Google, the purpose of Customer Reviews is to allow retailers to collect valuable feedback from people who made a purchase on their Store. This feedback can then be shown in the form of a rating. The rating can be shown on Google Search Ads and Google Shopping. The feedback is collected via emailed surveys, a customer will be asked if they would like to “Opt-In” on the purchase confirmation page in order to receive this survey. More importantly, the review process is based entirely on the customers own discretion.
The main features of Google Customer Reviews are:
Google Customer Reviews Opt-In: Users who opt-in to this after checkout may receive an email from Google Customer Reviews asking them to rate their experience with your store.
Google Customers Review Badge (Optional): A badge on your site that can help users identify your site with the Google brand and can be placed on any page of your site. The badge displays a seller rating score of 1-5 stars.
Google Customers Reviews Survey (Optional): The survey is a brief questionnaire that enables customers to rate their purchase experience with your site.
Seller Ratings: An aggregate score that appears on Search ads and Google Shopping, as well as on Google Customer Review badges.
Customer Reviews are also available on mobile sites, with the same opt-in option.
Requirements
See if your country makes the list of eligible countries.
Your shopping cart and checkout pages must be hosted on the same domain (if you got your domain with Jumpseller this is already done)
The confirmation page must be hosted on your own domain (with Jumpseller you do not need to do this step)
<!DOCTYPE HTML> must be added to the top of every webpage (Jumpseller stores have it by default)
Your store has a separate order confirmation page (Jumpseller stores have this by default)
You are able to add JavaScript code to all of your pages (possible with Jumpseller)
You can direct customers back to an order confirmation page on your store’s domain if using an e-commerce platform that redirects customers to a third-party domain (Jumpseller does this)
Your store has an encrypted order confirmation page i.e uses HTTPS (possible with Jumpseller)
You will display the survey opt-in to all your users after checkout (possible with Jumpseller)
For Google Customers Reviews badge, If you do not have the required 150 reviews, your Google Customers Reviews badge will state “Rating not available” until you establish a rating.
How to Set Up Customer Reviews for your Online Store?
To enable the reviews, you must first have a Google Merchant account.
Login to your Google Merchant Account, and click on the 3 dots on the top right, and go to Merchant Center programs.
Once there, enable Customer Reviews.
Read and sign the Google Customer Reviews agreement.
Next, you must place the “Opt-In code” on your website in the code editor, and replace YOUR MERCHANT ID GOES HERE with your MERCHANT_ID and select your Language that you want for the survey by putting the correct value "YOUR LANGUAGE GOES HERE, eg: es, pt or en". This will trigger the survey on the completed transaction page in the language you selected:
Important Note: In the following code, the varilable assign seconds = 14 refers to the exact day the customer will receive the review survey after payment. In this case, the value is set at 14, meaning the customer shall receive the review survey on the 14th day after payment. You can change this value if you prefer, but, the number of days must be fixed after purchase (not after delivery).
<!-- Google Customer Reviews -->
<script src="https://apis.google.com/js/platform.js?onload=renderOptIn" async defer></script>
{% assign seconds = 14 | times: 24 | times: 60 | times: 60 %}
<script>
window.___gcfg = {
lang: "YOUR LANGUAGE GOES HERE, eg: es, pt or en"
};
window.renderOptIn = function() {
window.gapi.load('surveyoptin', function() {
window.gapi.surveyoptin.render(
{
// REQUIRED FIELDS
"merchant_id": "YOUR MERCHANT ID GOES HERE",
"order_id": "{{order.id}}",
"email": "{{order.email}}",
"delivery_country": "{{order.shipping_address.country_code}}",
"estimated_delivery_date": "{{ "today" | date: "%s" | plus: seconds | date: "%Y-%m-%d" }}",
// OPTIONAL FIELDS
"products": [{% for product in order.products %}{"gtin":"{{product.barcode}}"}{% if forloop.last == false %},{%endif%} {%endfor%}]});
});
}
</script>
To add the GCR badge to your site:
- Paste the following code snippet into your web page:
<script src="https://apis.google.com/js/platform.js?onload=renderBadge"
async defer>
</script>
<script>
window.renderBadge = function() {
var ratingBadgeContainer = document.createElement("div");
document.body.appendChild(ratingBadgeContainer);
window.gapi.load('ratingbadge', function() {
window.gapi.ratingbadge.render(
ratingBadgeContainer, {
// REQUIRED
"merchant_id": MERCHANT_ID,
// OPTIONAL
"position": "POSITION"
});
});
}
</script>
Place the code just before the closing