i want get content in CMS Block, i tryed this code but it not show content

My code :

<?php foreach ($this->getAgreements() as $_a): ?>
     <?php echo $_a->getContent() ?>
<?php endforeach ?>

It not show content, but show this:

{{block type="cms/block" block_id="gs_business_terms"}}
有帮助吗?

解决方案

Use this code to echo content of cms block

<?php foreach ($this->getAgreements() as $_a): ?>
     <?php echo Mage::helper('cms')->getPageTemplateProcessor()->filter($_a->getContent());?>
<?php endforeach ?>

This should work

其他提示

You can call like this one.

<?php foreach ($this->getAgreements() as $_a): ?>
     <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId($_a->getIdentifier())->toHtml(); 
?> 
<?php endforeach ?>
许可以下: CC-BY-SA归因
scroll top