有谁知道如何将新的Google商品评论与WooCommerce集成?
Google提供以下说明,但不确定这对Woo的价值。
如果有人能指出我正确的方向,我们将非常感激!!
Add the opt-in code
为了让您的客户可以选择提交购买体验的评论,请将选择加入模块添加到您的订单确认页面。
要将调查选择加入模块添加到您的订单确认页面:
Paste the following HTML snippet into your 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 the code just before the closing </BODY> tag. When you place the survey module code with the badge code, the order does not matter: the survey module code can be before or after the badge code.