我正在尝试在Magento CMS页面中获取if语句功能。
This post recommends something like the following:
{{if customer.group_id==4}} Print true {{else}} Print false {{/if}}
这是我正在寻找的确切类型,但这不起作用。我可以使用类似的东西吗?
这就是我想要做的事情:
{{if data.request_quote=="on"}} Yes {{else}} nope {{/if}}
其中var data.request_quote
是表单变量。即使data.request_quote
为on
,它仍会以nope形式出现。
有人可以帮忙吗?
答案 0 :(得分:0)
不能这样做。这种类型的if
语句只适用于布尔变量,我只能将字符串变量传递给它。
因此,我的交易电子邮件必须说on
而不是Yes
。
非常令人失望。