🎁 Cupom BEMVINDO no checkout
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google Customer Reviews</title>
<!-- =====================================================
GOOGLE CUSTOMER REVIEWS - SURVEY OPT-IN
===================================================== -->
<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({
// CAMPOS OBRIGATÓRIOS
"merchant_id": 5827101372,
"order_id": "ORDER_ID",
"email": "CUSTOMER_EMAIL",
"delivery_country": "BR",
"estimated_delivery_date": "YYYY-MM-DD",
// CAMPOS OPCIONAIS
"products": [
{
"gtin": "GTIN1"
},
{
"gtin": "GTIN2"
}
]
});
});
};
</script>
<!-- =====================================================
GOOGLE MERCHANT WIDGET
===================================================== -->
<script
id="merchantWidgetScript"
src="https://www.gstatic.com/shopping/merchant/merchantwidget.js"
defer>
</script>
<script>
document
.getElementById('merchantWidgetScript')
.addEventListener('load', function () {
merchantwidget.start({
// CAMPO OBRIGATÓRIO
merchant_id: 5827101372,
// CAMPOS OPCIONAIS
position: POSITION,
region: REGION
});
});
</script>
</head>
<body>
<h1>Obrigado pela sua compra!</h1>
<p>
Em breve você receberá seu pedido.
</p>
<p>
O Google poderá enviar uma pesquisa para avaliar
sua experiência de compra.
</p>
</body>
</html>