在主页左栏添加图片

发布于 2024-07-30 06:47:56 字数 19 浏览 4 评论 0原文

如何在主页左栏添加图片?

How do I add an image to the left column on the homepage?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

绿萝 2024-08-06 06:47:57

转到magento管理站点,选择系统->配置->高级->开发人员并打开模板标签提示。 (确保在“当前配置范围”下拉列表中选择您的商店名称)

然后您可以返回商店主页,您将能够看到左列使用了哪个模板。

修改 .phtml 模板文件并在其中添加您的图像。

Go to the magento admin site, choose System->Configuration->Advanced->Developer and turn on template tag hints. (Make sure your store name is selected in the Current Configuration Scope dropdown)

You can then go back to your store homepage and you will be able to see which template is used for the left column.

Modify the .phtml template file and add your image there.

塔塔猫 2024-08-06 06:47:56

有一个更简单的方法:

  1. 在管理中转到 CMS-> 管理页面,
  2. 选择主页以
  3. 在左侧进行编辑,选择第二个选项卡(自己的布局)
  4. 作为布局,选择 3 列或 2 列带左栏
  5. 在 xml 更改字段中添加以下内容:
<参考名称=“left”> 
      <块类型=“核心/模板”名称=“unique.id”模板=“callouts/left_col.phtml”> 
          imageUrl 
          替代文本 
       
   
  

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

There's a simpler way of doing this:

  1. in the admin go to CMS->Manage Pages
  2. select the home page to edit it
  3. on the left select the second tab(own layout)
  4. as the layout choose either 3 colum or 2 column with left bar
  5. in the xml changes field add this:
<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. in the xml field change "imageUrl" to the address of your image, "alternative text" to the alternative description and unique.id to a unique id like advertisement.banner.left.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文