在 Magento 中使用静态块调用产品页面的正确方法

发布于 2024-10-23 13:56:53 字数 633 浏览 2 评论 0原文

我有一个内容滑块设置并且工作正常,但是当尝试将 URL 添加到内容导航时,我仍然在链接中看到我的占位符 (#),而不是看到链接。在静态块中调用产品的正确方法是什么?我尝试使用类似的内容:

<ul id="nav1">
<li><input id="array_text_0" type="hidden" value="<li><a href="#"></a></li>"/></li>
<li><input id="array_text_1" type="hidden" value="<li><a href="#"></a></li>"/></li>
<li><input id="array_text_2" type="hidden" value="<li><a href="{{store direct_url='/apparel/shoes/mens/asics-men-s-gel-kayano-xii.html'}}"></a></li>"/></li>
</ul>

但是链接不会从 (#) 更改

I have a content slider setup and works correctly, but when try to add a url to the content navigation I am still seeing my placeholder (#) in the link instead of see the link. What is the correct way to call a product in a static block? I tried using something along the lines of this:

<ul id="nav1">
<li><input id="array_text_0" type="hidden" value="<li><a href="#"></a></li>"/></li>
<li><input id="array_text_1" type="hidden" value="<li><a href="#"></a></li>"/></li>
<li><input id="array_text_2" type="hidden" value="<li><a href="{{store direct_url='/apparel/shoes/mens/asics-men-s-gel-kayano-xii.html'}}"></a></li>"/></li>
</ul>

however the link does not change from (#)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

厌倦 2024-10-30 13:56:53

我刚刚在 /frame.html 上测试了产品。为了在静态块中链接到该页面,我使用了 {{store direct_url="frame.html"}} (使用 direct_url,而不是 url< /code>,删除尾部斜杠。)

我假设您已禁用缓存?如果没有,请将其禁用并重试。

编辑:还有一个事实是,您使用双引号将参数括在值中。您需要转义用作值的双引号,或者使用单引号。

I have just tested with a product at /frame.html. To link to that page in a static block I used {{store direct_url="frame.html"}} (the use of direct_url, instead of url, removes the trailing slash.)

I assume you've got caching disabled? If not, disable it and try again.

Edit: There's also the fact that you've used double-quotes to wrap the arguments and in the value. You'll either need to escape the double-quotes you're using as a value, or use single-quotes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文