我在Magento管理员中创建了名为Link的自定义配置文本字段。 无论输入什么,都会在URL中作为前端拉入。 用户可以添加绝对路径以及Magento变量{{store url =' awesome.html'}}。
问题是如何将前端中的{{store url =' awesome.html'}}拉到http://www.domain.com/awesome.html?
答案 0 :(得分:0)
我在块中使用了这个
echo str_replace( '{{store url=""}}', Mage::getBaseUrl(), $top_menu_category->getContent() ); ?>
它在块中对我有用,你需要使用那个函数,因为我看到,在模板中变量没有被解析