Magento:使用变量在 CMS 语法中构建商店 URL
我正在构建一个电子邮件模板。我想构建一个像这样的 URL:
http://store.com/path/to/page?shipmentid=123
此代码构建了正确的 URL:
{{store url='path/to/page' _query_shipmentid=123}}
但 123
部分应该是动态的。我需要它从这个变量中提取:
{{var shipment.id}}
这可能吗?我正在寻找这样的东西:
{{store url='path/to/page' _query_shipmentid=shipment.id}}
I am building an e-mail template. I want to build a URL like this:
http://store.com/path/to/page?shipmentid=123
This code builds the correct URL:
{{store url='path/to/page' _query_shipmentid=123}}
But the 123
part should be dynamic. I need it to pull from this variable:
{{var shipment.id}}
Is this even possible? I'm looking for something like this:
{{store url='path/to/page' _query_shipmentid=shipment.id}}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
$
前缀让 Magento 知道它是变量。这段代码应该可以工作:Use
$
prefix to let Magento know that it is variable. This code should work: