Get static block in CMS and Static Blocks
{{block type="cms/block" block_id="my-block-id"}}
Get static block in Phtml file
echo $this->getLayout()->createBlock('cms/block')->setBlockId('my-block-id')->toHtml();
‘my-block-id’ is block identifier
Magento Developer's Diary
Using Marketz multi-Vendor magento extension, magento store owners are able to transform their existing store to a fantastic marketplace. Every website owner can now sell his/her products and allow others to sell their products too. Also, with this plug-in, the owners can easily earn additional revenue by setting up commission fee for every purchase of vendor products.
Windows does not come with a bundled SSH client by default. It is recommended that you use the freely available Putty utility, which can be downloaded from:
http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html
You will need to get your SSH key in PPK format
Magento is an eCommerce platform built on open source technology that provides online merchants with a flexible shopping cart system. It offers powerful marketing, search engine optimization, and catalog-management tools.
Magento is the fastest growing and most powerful eCommerce platform in the world. Since being launched in 2007, Magento has grown to become one of the most powerful eCommerce platforms in the industry.
Why is Magento the most preferred E-Commerce Platform?
Versions of Magento
One of the currently used version in Magento is the Community Edition, which is free, open source platform that is designed for developers to build upon.
Go to the file {your magento root folder}/Block/Adminhtml/{module name}/Edit/Tab/Form.php add following code in top of the file
$fieldset->addField( 'followupemail_text', 'editor', array('name'=>'followupemail_text', 'label' => Mage::helper('followupemail')->__('Content'), 'title' => Mage::helper('followupemail')->__('Content'), 'required' => true, 'style' => 'height:24em;','config' => $wysiwygConfig, ));
go to the file {your magento root folder}/Block/Adminhtml/{module name}/Edit.php add the following line in this file
protected function _prepareLayout() { // Load Wysiwyg on demand and Prepare layout if (Mage::getSingleton('cms/wysiwyg_config')->isEnabled() && ($block = $this->getLayout()->getBlock('head'))) { $block->setCanLoadTinyMce(true); } parent::_prepareLayout(); }