I am using this code in my template file to display a static block in my left sidebar:
= $this->getLayout()->createBlock(\'cms/block\')->setBlo
Include the block in your layout instead:
leftSB1
And then $this->getChildHtml('leftSB1') in your sidebar, if you're not including children automatically.
$this->getChildHtml('leftSB1')
(and then remove it from the particular page as in the previous answer)