How to get config variable value in magento.?
To get the config variable value in Magento you must use the below code to get the desired results accordingly. $configValue = Mage::getStoreConfig(‘sectionName/groupName/fieldName’); $configValue = Mage::getStoreConfig(‘sectionName/groupName/fieldName’, Mage::app()->getStore()); Above both methods...