You have created a static block and now you want to add it to your CMS page.
You can do it in 2 ways. Assume you have created a block called sch_myblock:
1. CMS Page “Content” tab:
// In the CMS page “content” you can include a custom static block like this
|
1 |
{{block type="cms/block" block_id="sch_myblock" template="cms/content.phtml"}} |
2. CMS Page “Design” tab:
// In the “Page layout” section you can add a custom block like this
|
1 2 3 4 5 6 |
// In the "Page layout" section you can add a custom block like this <reference name="left"> <block type="cms/block" name="sch_myblock" before="-"> <action method="setBlockId"><block_id>sch_myblock</block_id></action> </block> </reference> |



