我想在magento主页上显示图像。我该怎么做?
这是我主页的当前代码。我想在顶部显示图像。正如您所看到的,我尝试了一些代码。 (对不起,我是一个真正的菜鸟。)
<action method="setImgSrc"><src>http://www.doozoo.com/skin/frontend/exdress/default/images/cdd_delivery_promoter.png</src></action>
<reference name="slideshow">
<block type="cms/block" name="cms_slideshow">
<action method="setBlockId"><block_id>slideshow</block_id></action>
</block>
</reference>
<reference name="brands_slider">
<block type="cms/block" name="cms_brandsslider">
<action method="setBlockId"><block_id>brands_slider</block_id></action>
</block>
</reference>
<reference name="products_slider">
<block type="cms/block" name="cms_productsslider">
<action method="setBlockId"><block_id>products_slider</block_id></action>
</block>
</reference>
<reference name="dailytopproduct">
<block type="cms/block" name="cms_dailytopproduct">
<action method="setBlockId"><block_id>daily_top_product</block_id></action>
</block>
</reference>
<reference name="exdressme">
<block type="cms/block" name="cms_exdressme">
<action method="setBlockId"><block_id>exdressme</block_id></action>
</block>
</reference>
<remove name="delivery_promoter" />
答案 0 :(得分:1)
只需访问Magento后端,CMS - 管理页面并在那里编辑主页。
答案 1 :(得分:0)
你可以用两种方式来做,
转到管理员面板CMS -> Pages -> Home Page -> from left select "content"
。使用编辑器的图像图标上传图像。
<?php echo $this->getSkinUrl(); ?>images/cdd_delivery_promoter.png
答案 2 :(得分:0)
要给出一个好答案真的很难,因为它还取决于您希望图像显示的位置以及您如何自定义主页。看看你的布局XML看起来已经定制了很多。
我可以给您添加自定义图像到主页上内容块的最常见答案是更改page.xml
布局XML文件中的以下内容:
<cms_index_index translate="label">
<label>CMS Home Page</label>
<reference name="content">
<block type="core/text" name="homepage_custom_image" before="-">
<action method="setText">
<text><![CDATA[<img src="/path/to/image.png" width="400" height="100" alt="Alt Text Here" />]]></text>
</action>
</block>
</reference>
</cms_index_index>
这会将图片放在页面顶部,而其他内容来自CMS下方。