Magento – how do i put a static block in the left or right column using the rwd theme in magento

blockslayoutrwd-theme

How do i put a static block in the left or right column using the rwd theme
in magento? I can't find any tutorials to about this subject.

Best Answer

Add the following to the RWD themes local.xml layout file

[...]
<default>
   <reference name="left">
      <block type="cms/block" name="[a unique name]">
         <action method="setBlockId"><block_id>[the block identifier]</block_id></action>
      </block>
   </reference>
</default>
[...]

Some good layout XML resources in case you want to read up