Вопрос

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 с атрибуция
Не связан с magento.stackexchange
scroll top