Static block on home page in Magento

前端 未结 1 735
小鲜肉
小鲜肉 2020-12-13 21:15

I am trying to add a static block to the home page of a Magento site using the layout XML file.

I can see how to add and remove block inside a reference, but I am st

相关标签:
1条回答
  • 2020-12-13 21:28

    In any layout file used by your theme add the following.

    <cms_index_index>
      <reference name="content">
        <block type="cms/block" name="home-page-block">
          <action method="setBlockId"><block_id>home-page-block</block_id></action>
        </block>
      </reference>
    </cms_index_index>
    

    cms_index_index is specific to the home page.

    0 讨论(0)
提交回复
热议问题