gpt4 book ai didi

magento - 如何在静态 block 中获取特定商店 View 的基本 url?

转载 作者:行者123 更新时间:2023-12-03 09:27:01 24 4
gpt4 key购买 nike

我知道在 .phtml 文件中您可以这样做:

<?php echo $this->helper('derco_core')->getStoreUrl('dcmotosesp')?>

我想在静态 block 内做同样的事情。提前致谢。

最佳答案

没有使用短代码 ({{store url}}) 获取特定商店 URL 的“干净”方法。
...因为store短代码处理程序像这样结束(参见Mage_Core_Model_Email_Template_Filter::storeDirective()):

return Mage::app()->getStore(Mage::getDesign()->getStore())->getUrl($path, $params);

这意味着存储不能作为参数传递。

以下内容可能有效,但有点难看。这个想法是通过 $_GET 发送参数 ___store 告诉 Magento 切换到特定商店。

<a href="{{store url="some/url/here" _query="___store=store_code_here"}}">TEST LINK</a>

(将“store_code_here”替换为您的特定商店代码)。

另一种选择是扩展上述方法并允许它接收 store_code 参数。

关于magento - 如何在静态 block 中获取特定商店 View 的基本 url?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18405477/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com