使用 shopfiy 模板语言,创建产品模板以搭配购物车实现一键购买
Mark Lv4

shopfiy 的 product 在添加产品时,如果要将产品详情页面与购物车关联,就是在详情页里面直接下单,而不是从详情页通过点击购买按钮,跳到 shopfy stroe ,再从这个位置再跳转到下单页。为了改变这种不停的跳转,且如果网络不好的情况下,很容易流失客户。

操作方法可以简单描述成这样:先在 Product 中添加一个产品模板,在当前产品模板中,关联 Product template 中的 自定义模板,这个自定义模板来自 Online Store 的 Templates:

建立自义定义模板:product.customize.liquid

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
//这个自定义模板包含通用的产品模板页中的内容,主要是通用的css / js / 布局以及购物车相关的代码块

<link rel="prefetch prerender stylesheet" type="text/css" href="{{ 'swiper.css' | asset_url }}"/>
<link rel="prefetch prerender stylesheet" type="text/css" href="{{ 'bolt.css' | asset_url "}}" />
<link rel="prefetch prerender stylesheet" type="text/css" href="{{ 'ulbolt-font.css' | asset_url }}"/>
<!--ubolt-pro-animation-->
<link rel="prefetch prerender stylesheet" type="text/css" href="{{ 'ubolt-pro-animation.css' | asset_url }}"/>
<link rel="prefetch prerender stylesheet" type="text/css" href="{{ 'bolt.css' | asset_url "}}" />
<script>
$(function() {
$(".opendivbtn").click(function() {
$(".opendiv.video iframe").attr("src", $(this).attr("href"));
$(".opendiv.video,.opendivmask").addClass("active");
return false;
});
$(".opendivmask").click(function() {
$(".opendiv.video iframe").attr("src", "");
$(".opendiv.video,.opendivmask").removeClass("active");
});
$(".ul3_feature_new_1").hover(function() {
$(this)
.children(".compare.compareshow")
.toggleClass("hover");
});
$(".compareshow").click(function() {
$(".opendiv.comparedivwrap,.opendivmask").addClass("active");
$("html,body").css("overflow", "hidden");
});
$(".opendivmask").click(function() {
$(".opendiv,.opendivmask").removeClass("active");
$("html,body").css("overflow", "auto");
});
$(".opendiv .closediv").click(function() {
$(".opendivmask").trigger("click");
});
});
</script>

<!-- 通过 assign 定义的这个变量是获取当前产品已经选中的默认属性值,比如购物车中默认选中的第一个属性:颜色,大小,材质等 -->
{% assign selectedVariant = product.selected_or_first_available_variant | default: product %}
//通用的 video 弹层
<div class="opendiv video">
<div class="fluid-width-video-wrapper">
<iframe src="" frameborder="0" allowfullscreen=""></iframe>
</div>
</div>
<div class="opendivmask"></div>//这是通用描述插入方法
{% if product.description.size > 0 %}
<div class="product-description rte" itemprop="description">
{{ product.description }}
</div>
{% endif %}//通用的 产品价格插入,这样写的目的是如果 shopfiy 的后台将该产品改掉后,详情页也会一起改掉//product.compare_at_price 原价//product.price 售价//需要了解 shopfiy 模板语言的使用方法 {{ 变量名称 | 变量单位 }}
<script>
jQuery(function(){
jQuery('.insertPrice .sellingPrice').text("{{ product.price | money }}");
{% if product.compare_at_price > product.price %}
jQuery('.insertPrice .remove-line').removeClass("remove-line");
jQuery('.insertPrice .originalPrice').text("{{ product.compare_at_price | money }}");
{% endif %}
});
</script>//产品购物车内容是以 json 格式存在的,不同产品,json 内容不同,而购物车的json是根据 id="product-json" 进行关联的,而 购物车的 json 名称定义为 buyingOptions,为数组
<script>
window.productJSON = {{ product | json }};
</script>
<script type="application/json" id="product-json">

</script>//下面这个方法,是调取不同产品详情页定义的关于购物车的 json
<script>
var productCart = {
title: {{ product.title | json }},
buyingOptions: []
};
if (productOption) {
jQuery.each(productOption, function(i, row){
if(row.colorOptions){
var colorOptions = [];
jQuery.each(row.colorOptions, function(j, col){
var _option = {
colorOptionName: col.colorOptionName,
color: col.color,
imageUrl: col.imageUrl,
variant: window.productJSON.variants[col.id]
};
colorOptions.push(_option);
});
}

var buyingOptions = {
buyingOptionName: row.buyingOptionName,
colorOptions: colorOptions
};

productCart.buyingOptions.push(buyingOptions)
});
} //购物车内容关联的 id 为 product-json,这个很重要
var productElement = document.getElementById("product-json");
productElement.innerHTML = JSON.stringify({product:productCart});
</script>

关联自义定义模板:product.customize.liquid

在 product 中新建一个产品,在它的 Description 的 代码块中添加 productOption 相关内容以及产品页面布局

img

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//这个代码块中的 productOption 的内容都是写死的,是根据销售自己定义的不同名称(buyingOptionName),但是 colorOptions 的内容是根据 Variants 中设置的颜色来定义的://通过查看 Variants 中设置好的颜色 4个, 可以自定义 名称为 BBkey 可以关联前两种颜色,而名称为 BBkey + wifi 可以关联后两种颜色
//每种颜色可以定义它的 id / colorOptionName / color / imageUrl<script>// <![CDATA[
var productOption = [
{
"buyingOptionName": "BBkey",
"colorOptions":
[
{
"id":0,
"colorOptionName": "White",
"color": "#b5b6b5",
"imageUrl": "https://cdn.shopify.com/s/files/1/0795/7689/products/2_grande.jpg?v=1552017922"
},
{
"id":1,
"colorOptionName": "Black",
"color": "#000000",
"imageUrl": "https://cdn.shopify.com/s/files/1/0795/7689/products/2_grande.jpg?v=1552017922"
}
]
},
{
"buyingOptionName": "BBkey + wifi",
"colorOptions":
[
{
"id":2,
"colorOptionName": "White",
"color": "#b5b6b5",
"imageUrl": "https://cdn.shopify.com/s/files/1/0795/7689/products/2_grande.jpg?v=1552017922"
},
{
"id":3,
"colorOptionName": "Black",
"color": "#000000",
"imageUrl": "https://cdn.shopify.com/s/files/1/0795/7689/products/2_grande.jpg?v=1552017922"
}
]
}
]
// ]]></script>

Variants设置产品属性及不同价格

img

通过以上的关联与操作,就可以在当前产品的详情页中点击购买按钮,会有一个下面这样的弹层出现,可以直接添加购物车进行购买。

img

附shopfiy 相关教程供参考:

Liquid 文档: https://liquid.bootcss.com/

shopfiy 中文文档: https://help.shopify.com/zh-CN

shopfiy api : https://help.shopify.com/en/themes/development/getting-started/using-ajax-api#change-cart

价格脚本api: https://help.shopify.com/zh-CN/manual/apps/apps-by-shopify/script-editor/update-liquid-templates-for-scripts

自定义 css : https://help.shopify.com/zh-CN/manual/apps/apps-by-shopify/product-reviews/advanced-customization

自定义 模板: https://help.shopify.com/en/themes/customization

Shopify 脚本 API : https://help.shopify.com/zh-CN/manual/apps/apps-by-shopify/script-editor/shopify-scripts

1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% assign product = all_products['bbk'] %}

{% assign selectedVariant = product.selected_or_first_available_variant | default: product %}

//selectedVariant 默认选中的第一个产品属性,比如默认选择为 黑色

//从 all_products 中获取 combo 的名称并赋值给变量 product,每个产品都必须获取对应的产品名称,用这个产品名称来获取以下几种数据:
1. 不同产品对应的售价与原价
2. 不同产品对应的 selectedVariant ,选择到购物车的产品属性列表

相关属性为:
"title": {{ product.title | json }},
"price": {{ product.price | money }},
"compare_at_price": {{product.compare_at_price | money}}

标记符

1
2
3
4
5
6
7
8
{% ... %}
{% for i in (1..5) %}
{% if i == 4 %}
{% break %}
{% else %}
{{ i }}
{% endif %}
{% endfor %}

用于插入某片段,使用with赋值,使用 include

1
2
3
4
5
6
7
例如有一片段 color.liquid
color: '{{ color }}' shape: '{{ shape }}'

将 color.liquid 插入到 theme.liquid 中
{% include 'color' %}
{% include 'color' with 'red' %}
{% include 'color' with 'blue' %}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Cart 对象属性:
* cart.total_discount
* cart.original_total_price

订单商品属性:
* line_item.discounts
* line_item.message
* line_item.original_price
* line_item.original_line_price
* line_item.total_discount

* line_item.total_discount 返回已应用于订单商品的折扣金额
* line_item.original_line_price 返回应用折扣前的订单项目价格
* line_item.message 返回用于描述应用于订单项目的折扣的消息。

shopfiy Ajax Api

所有请求网址都是以 js 结尾

  • Post title:使用 shopfiy 模板语言,创建产品模板以搭配购物车实现一键购买
  • Post author:Mark
  • Create time:2021-01-11 10:39:25
  • Post link:https://m.iqimeng.com/2021/01/11/shopify/使用 shopfiy 模板语言,创建产品模板以搭配购物车实现一键购买/
  • Copyright Notice:All articles in this blog are licensed under BY-NC-SA unless stating additionally.