在shopify中将输出路径嵌入逻辑路径中

时间:2014-06-16 12:57:46

标签: shopify

我基本上想要检索用户在结帐时使用的网关,并且我必须应用逻辑路径。

我试过了

{% if {{ gateway }}=="Cash on Delivery (COD)" %}
<tr>
<td><strong>Shipping Taxes</strong></td>
<td>Rs. 19</td>
{% endif %}

2 个答案:

答案 0 :(得分:0)

结帐时没有可以设置的液体渲染。您可以将脚本添加到Thank You页面,您可以在其中使用Liquid脚本。您的更改将是访问订单本身。尝试

{% if order.gateway == 'Cash on Delivery (COD)" %}
   ... your special code here
{% endif %}

你会发现那是有效的。

答案 1 :(得分:0)

大卫是的,你只能在收银台添加液体的地方(仅限感谢页面)。如果您正在放置代码,那么只要从{{ }}变量周围删除gateway就可以了。

This page in the Shopify doco举了一个例子:

{% if gateway == 'Cash on Delivery (COD)' %}
    ...
{% endif %}