Magento:使用变量在 CMS 语法中构建商店 URL

发布于 2024-10-05 02:30:25 字数 413 浏览 2 评论 0原文

我正在构建一个电子邮件模板。我想构建一个像这样的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁梦 2024-10-12 02:30:26

使用 $ 前缀让 Magento 知道它是变量。这段代码应该可以工作:

{{store url='path/to/page' _query_shipmentid=$shipment.getId()}}

Use $ prefix to let Magento know that it is variable. This code should work:

{{store url='path/to/page' _query_shipmentid=$shipment.getId()}}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文