magento的主页定制

时间:2012-05-21 09:44:19

标签: magento

我正在使用magento开发电子商务网站。我有两个主商店的网店。我想在我的主页上添加一个弹出窗口,以便用户可以选择一个选项来访问该站点。请帮助我这方面。

谢谢

1 个答案:

答案 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"/>行。

您将有两个解决方案:

  • 对我而言,这不是最佳解决方案,但您可以复制page.xml并将其放入自定义模板文件夹中 用该行替换语言开关的行 <block type="page/switch" name="stores_switch" as="stores_switch" template="page/switch/stores.phtml"/>
  • 或创建一个新模块,将其布局文件放入自定义模板中,并将以下行设置为 mymodulelayout.xml布局:<reference name="header"><block type="page/switch" name="store_switcher" as="store_switcher" template="page/switch/stores.phtml"/> </reference>

这是使用这些信息调整模板的良好开端。我没有测试它。