我正在使用magento开发电子商务网站。我有两个主商店的网店。我想在我的主页上添加一个弹出窗口,以便用户可以选择一个选项来访问该站点。请帮助我这方面。
谢谢
答案 0 :(得分:0)
在Magento 1.6.2及更低版本中,(我没有在1.7中检查,但它也应该在那里)查看文件夹app / design / frontend / base / default / template / page / switch /,你会找到你需要的模板stores.phtml。
您还可以在app / design / frontend / base / default / layout / page.xml中找到page.xml布局文件,搜索<block type="page/switch" name="store_language" as="store_language" template="page/switch/languages.phtml"/>
行。
您将有两个解决方案:
<block type="page/switch" name="stores_switch" as="stores_switch"
template="page/switch/stores.phtml"/>
<reference name="header"><block type="page/switch" name="store_switcher" as="store_switcher" template="page/switch/stores.phtml"/>
</reference>
这是使用这些信息调整模板的良好开端。我没有测试它。