How to add Magento CMS static blocks inside CMS Page?

1. You simply add below code in your cms template :

{{block type="cms/block" block_id="IDENTIFIER"}}

2. You want add static Block in xml file inside :
  <block type="cms/block" name="BLOCK_NAME" after="cart_sidebar">
    <action method="setBlockId"><block_id>IDENTIFIER</block_id></action>
  </block>

3. You want add static Block in page inside :

<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId(IDENTIFIER)->toHtml() ?>

its is the method of static block in your cms page...

How to Popular Tag add & remove in Magento?

1. Go to Admin Panel

2. Select the Catalog => Select Add Tag

3. And what tag you want add here.

And watch below video tutorial url also :

http://fastdot.co.uk/magento-ecommerce/how-to-create-and-approve-tags-in-magento.html

Add :

appdesignfrontenddefaultyourthemelayouttag.xml

<default>

<!– Mage_Tag –>

<reference name=”right”>

<block type=”tag/popular” name=”tags_popular” template=”tag/popular.phtm”>

<action method=”setTemplate”><template>tag/popular.phtml</template></action>

</block>

</reference> </default>

Remove :

go to below URL.

http://stackoverflow.com/questions/2654515/removing-the-block-popular-tags-from-the-index-view-in-magento

Here some more useful things.

that’s all ЁЯЩВ

This is custome tag add in home page option : {{block type=”tag/popular” template=”tag/popular.phtml”}}

┬й 2020 Spirituality