所以我在一个网站上工作,主人将每个订单的一定比例捐给慈善机构。
在用户帐户页面的底部是一个部分,向客户显示他们所有订单的捐款数量。
基本上,客户在所有订单上总共花了100英镑,每个订单都有2%的捐款。
我如何使用Liquid进行此操作?
答案 0 :(得分:2)
{% assign total = customer.tota_spent %} <!-- if total spent is 100 -->
{% assign percent = 2 %} <!-- and the donation percent is 2 -->
<!-- total divided by 100 would be 1 percent, times by 2 for 2 percent. -->
{% assign donation = total | divided_by: 100 | times: percent %}
{{ donation }}<!-- outputs 2 if the total spent is 100 -->
答案 1 :(得分:0)