如何将礼品添加到Shopify的放弃购物车电子邮件中

时间:2016-09-04 02:58:13

标签: html css shopify

我目前正在向我的潜在客户发送弃车电子邮件,允许他们点击电子邮件中的按钮,然后将其带回我们商店的购物车,以便他们完成交易。我想修改此按钮以添加“免费礼品”(商店中的产品)。因此,当点击按钮时,所有以前的购物车商品都会显示在购物车中以及免费礼品中。

电子邮件中当前的返回购物车按钮的脚本如下:

<td align="center"><a class="button-link " href="{{return_url}}" target="_blank" style="background-color: #ffff00; border-radius: 20px; color: #000000; display: inline-block; text-align: center; text-decoration: none; width: 50%; -webkit-text-size-adjust: none; box-sizing: border-box;"><span class="button_content" style="padding: 14px; display: block;"><span style="display: block; font-family: Arial, Helvetica, sans-serif; color: #ad8c8f; font-size: 16px; text-decoration: none;"></span><span style="display: block; font-family: Arial, Helvetica, sans-serif; font-size: 16px; text-decoration: none;"><span style="color: #000000;"><span style="font-size: 20px;">Teleport To My&nbsp;Cart!</span></span></span><span style="display: block; font-family: Arial, Helvetica, sans-serif; color: #ad8c8f; font-size: 16px; text-decoration: none;"></span></span></a></td>

我尝试过创建Shopify“购买按钮”来添加免费礼物: https://dealdigger.myshopify.com/cart/26676652359:1?channel=buy_button 然而,这似乎只为客户打开了一个全新的购物车,而不是将其添加到现有的购物车中。

有没有办法修改电子邮件中当前的返回购物车按钮以添加上面的免费礼物? 谢谢你的帮助,非常感谢! :)

1 个答案:

答案 0 :(得分:0)

您可以使用此逻辑 - https://help.shopify.com/themes/customization/cart/use-permalinks-to-preload-cart&amp; https://help.shopify.com/themes/liquid/objects/line_item

这是一个简单的代码:

 <div id="carousel-example-generic" class="carousel slide" data-ride="carousel" data-interval="3000">
<div id="carousel">
    <div id="images" class="row">
    </div> 
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
    <span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
    <span class="glyphicon glyphicon-chevron-right"></span>
</a>
<!-- / -->

现在购物车网址和免费礼物

<强> https://dealdigger.myshopify.com/cart/ {% for item in cart.items %} {% capture existing_cart %}{{ existing_cart }}{{ item.variant_id }}:{{ item.quantity }}&{% if forloop.last %}26676652359:1;{% endunless %}{% endcapture %} {% endfor %}