Click Here for step by step guide to build custom magento module.
A blog that caters the needs as Magento Tutorial for Magento freshers. One can find helps related to Magento issues. Many Magento Extensions and Magento Modules are discussed in this blog. The blog author has himself developed many Magento extensions and has experience of 40+ Magento websites.
Wednesday, April 11, 2012
Saturday, April 7, 2012
Tuesday, April 3, 2012
Magento EU Vat Module Documentation
Click below link to go to Magento EU Vat Module Documentation
EU VAt Documentation
EU VAt Documentation
Tuesday, March 27, 2012
Magento : Admin XML Structue
Magento : Admin XML Structue
Often we want to add some common configuration for our modules under "System->Configuration->General->Custom Tab"
Admin XML TO CREATE NEW TAB IN GENERAL
Often we want to add some common configuration for our modules under "System->Configuration->General->Custom Tab"
Admin XML TO CREATE NEW TAB IN GENERAL
Saturday, March 24, 2012
Magento : Get store Admin Email Address and Name
Magento : Get store Admin Email Address and Name
$from_email = Mage::getStoreConfig('trans_email/ident_general/email'); //fetch sender email Admin
$from_name = Mage::getStoreConfig('trans_email/ident_general/name'); //fetch sender name Admin
$from_email = Mage::getStoreConfig('trans_email/ident_general/email'); //fetch sender email Admin
$from_name = Mage::getStoreConfig('trans_email/ident_general/name'); //fetch sender name Admin
Magento : Set Custom Theme in Controller for a particular Page
Magento : Set Custom Theme in Controller
Open the corresponding controller and the action in that controller from where the layout is loaded.
Put the below code and you shall see your custom theme applied on that particular page.
public function indexAction() //It can be any action from where your layout is called
{
..
{
..
..
Mage::getDesign ()->setTheme('Your theme name'); /* This is the code you need to put */
$this->loadLayo ut();
$this->renderLa yout();
$this->loadLayo
$this->renderLa
}
Subscribe to:
Posts (Atom)