Reputation: 137
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?
Upvotes: 2
Views: 961
Reputation: 3702
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
Upvotes: 1