CMS Block – Adding a Block to CMS Page Not Working

cms-block

I am trying to add a new block to the CMS home page. Only this particular block I need to do it in the content tab, and not the layout tab( which works).

So in the content tab I have(Does not work):

{{block type="dailydeal/list" name="product_list_deals" template="dailydeal/slider.phtml" }}

But if I do it in the layout tab(Works fine):

<reference name="content">
            <block type="dailydeal/list" name="product_list" after="home_slider_cruisercorps" template="dailydeal/slider.phtml" />               
</reference>

I am not sure what is missing in the content tab, causing the block not to be loaded.

Using magento version 1.9.2.4

Best Answer

Allow block in dailydeal/list in admin-> system-> permission->blocks->add new block -> Enter dailydeal/list in Block name and Yes in Is Allowed it should resolve your issue.

Related Topic