在Shopify自建站中添加Google客户评论功能,增加GMC排名

admin2年前网站运营467

在Shopify自建站中添加Google客户评论功能,增加GMC排名

// this code works(4 Oct 2018), it might need changes depending on if and when shopify or google changes their code)
// Paste this code carefully with in the script tags

window.renderOptIn = function() {
    window.gapi.load('surveyoptin', function() {

    //this code gets all the UPC codes for products ordered, and adds them to product array
    //skip products fields it if you are not using global identifier, it also means that your review is not co-nthrelated back to products ordered

    var products = [
      {% for item in order.line_items %}
        {
          "gtin": {{ item.variant.barcode }}
        },

      {% endfor %}

      ];

      window.gapi.surveyoptin.render(

        {

          // REQUIRED FIELDS

          "merchant_id": 12345, //replace with your own google merchant id

          "order_id": "{{order.order_number}}",

          "email": "{{order.email}}",

          "delivery_country": "{{order.shipping_address.country_code}}",

          //this date dictates when review email would be sent if customer opt in, "plus:345600" is number of seconds for 4 days. Change the number of seconds to delivery time (432000 = 5 days, 604800 = 7 days).

          "estimated_delivery_date": "{{ order.created_at | date:'%s' | plus:345600 | date:'%F' }}",

          //optional: delete this line if you are skipping product GTIN

          "products": [{% for item in order.line_items %}{"gtin":"{{ item.variant.barcode }}"}{% unless forloop.last %}, {% endunless %}{% endfor %}]

          //optional: setting to where to display the dialog(prompt customer to opt in)

          "opt_in_style": "CENTER_DIALOG"

        });

  });

}


相关文章

做流量的本质是做用户

 做流量、做用户不是一劳永逸的,必须是一个机动化、持久化、长期的运作。这就导致两个现象,A,你对于获取流量必须要有非常清晰的认识;B,你获取流量的渠道必须是多元化的。  做流量、做用户不是一...

Shopify如何设置google analytics?

Shopify如何设置google analytics?

你可能已经设置了Google Analytics账户。但是我猜你应该仅仅是把GA代码填写到了Shopify后台,并没有对GA进行详细的配置,所以你也无法查看到更加准确的数据。阅读本指南需要15-20分...

FB的广告设置心得

FB的广告设置心得

创建的广告不会显示在主页里---所以需要长久功效的,建议选择原有的帖子做广告推广素材----创建的广告容易封号--估计是网站不符合fb的规则--比如售后或者shiping什么的绑定域名----在品牌安...

报错"指定值无效"时这样解决

后台切换成用英文版----一般都能解决用表格上传或者合并listing  :---用表格肯定能解决原文链接:Link...

三只松鼠的销量为何如此高,这个秘密我猜没有人会告诉你

三只松鼠的销量为何如此高,这个秘密我猜没有人会告诉你

新零售时代,产品的包装已成为营销黑马!据官方统计,三只松鼠、良品铺子等供应商,在去年的双十一活动中,全网络渠道销售额已突破十亿元。仔细研究下这些爆款产品,如三只松鼠,不难发现一个趋势:爆品要么赢在产品...

发表评论    

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。