Contributor

Contributor

Magento Helper Override/Overwrite

Magento Helper Override/Overwrite

Facebook Twitter LinkedIn In this article, we are going to discuss how to simply override existing Magento helper class. Sometimes you need to change the existing functions of the Mage helper classes because they don’t return what you actually want…

Create your own tab in system configuration in magento

Create your own tab in system configuration in magento

Facebook Twitter LinkedIn Create a new module in your local folder, add etc directory to the module and create system.xml with the following content -: <config> <tabs> <scommerce translate=”label”> <label>Scommerce Configuration</label> <sort_order>10</sort_order> </iredeem> </tabs> </config> Read moreDealcollector un sito per…

Get the list of events from any version of magento

Get the list of events from any version of magento

Facebook Twitter LinkedIn If you want to get the list of all the events available in your magento version, you can achieve this by running the following code -: $eventAreas = array(‘global’,’frontend’,’adminhtml’); foreach ($eventAreas as $eventArea) { $eventConfig = Mage::app()->getConfig()…