2

I have used a testimonial Magento extension:

http://www.magentocommerce.com/magento-connect/advanced-testimonial-manager.html

How to call any extension in a static block? How to find the block path and name?

nikis
  • 11,166
  • 2
  • 35
  • 45
Poltu
  • 137
  • 1
  • 3
  • 14

1 Answers1

1

The static blocks can be included in CMS page by:

{{block type="cms/block" block_id="my_block" template="cms/content.phtml"}}

Non-static block can be called in cms page by:

{{block type="" template="block template"}} 

For "type" in "{{block }}" part refer here

You can find the block by enabling enabling "Template Path Hints" as given here

Community
  • 1
  • 1
Dushyant Joshi
  • 3,672
  • 3
  • 28
  • 52