我正在考虑创建一个捆绑产品,它有几个可用的捆绑产品。
我的最小问题,是一个项目,是一个复选框列表,有大约200个可用选项。
因此,我希望将此块从右列移动到主列。
有谁知道这是哪个档案?
我正在使用v1.6.1
由于
答案 0 :(得分:1)
移动此块的步骤位于模板layot中添加块的位置。要找到它,您可以在system->配置中激活前端提示(选择最小范围网站) - >在标签advanced-> development and depure中
接下来,您可以看到您的模块的模板。例如footer.phtm
接下来,您应该在布局文件中搜索此块的定义。布局文件是用于撰写您的设计的file.xml。 在页脚示例中:
<default>
<block type="page/html_footer" name="footer" as="footer" template="page/html/footer.phtml">
<block type="page/html_wrapper" name="bottom.container" as="bottomContainer" translate="label">
<label>Page Footer</label>
<action method="setElementClass"><value>bottom-container</value></action>
</block>
</default><!--handle default-->
您可能在左侧块中的块内容,您应该在内容块中剪切并粘贴该块以在内容块中查看此内容。 希望能帮助你。