在 Magento 中使用静态块调用产品页面的正确方法
我有一个内容滑块设置并且工作正常,但是当尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚在
/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 ofdirect_url
, instead ofurl
, 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.