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
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> You can add sections in …

Add third party trackings in Magento
Facebook Twitter LinkedIn If you need to add other tracking other than GA tracking on your website then you can do it two ways. One way is like the same way Magento has implemented GA tracking. This is the most …

Easy way to find block class name in phtml
Facebook Twitter LinkedIn The most easy way to find out which class the phtml file belongs to by running the below small piece of code -: echo get_class($this) This small piece of code is very effective especially when you are …

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() …
Magento: how to create a super fast catalog export for Google Merchant
June 18, 2012 So you need a script to export your catalog products into a CSV file to import it on Google Merchant. There is a lot of scripts on the net to do this, but the problem with these …
Il bello di Groupon: Promozioni, sconti e acquisti in sicurezza
June 8, 2012 Oggi vi parlo ancora del sito web Groupon, non posso farne a meno visto le promozioni che ho qua davanti a me, sono sul loro sito or ora e sono indeciso se andare a cena fuori con …
Dealcollector un sito per tutte le offerte di Groupon, Groupalia e molti ai
April 27, 2012 Come molti avete forse sentito parlare del boom dei cosidetti coupon? Il grande successo di questo tipo di offerte è stato possibile con la generalizzazione dei meccanismi di gruppi d’acquisto colletivo. Con questi meccanismi puoi ottenere dei …