将图像添加到主页上的左列

时间:2009-08-04 13:13:55

标签: image templates magento themes webpage

如何将图像添加到主页的左栏?

2 个答案:

答案 0 :(得分:3)

有一种更简单的方法:

    管理员中的
  1. 转到CMS->管理页面
  2. 选择要编辑的主页
  3. 左侧的
  4. 选择第二个标签(自己的布局)
  5. 作为布局选择3列或2栏左栏
  6. 在xml更改字段中添加以下内容:
  7. <reference name="left">
        <block type="core/template" name="unique.id" template="callouts/left_col.phtml">
            <action method="setImgSrc"><src>imageUrl</src></action>
            <action method="setImgAlt" translate="alt" module="catalog"><alt>alternative text</alt></action>
        </block>
    </reference>
    
         

    6。在xml字段中,将“imageUrl”更改为图像的地址,将“替代文字”更改为替代说明,将unique.id更改为唯一 ID,如ads.banner.left。

答案 1 :(得分:1)

转到magento管理站点,选择System-&gt; Configuration-&gt; Advanced-&gt; Developer并启用模板标记提示。 (确保在“当前配置范围”下拉列表中选择了您的商店名称)

然后,您可以返回商店主页,您将能够看到左栏中使用的模板。

修改.phtml模板文件并在那里添加图片。