After completing installation of SugarCRM community edition, one of the first things you may want to change is the application logo. SugarCRM provides the option to change logo in admin panel.
Continue reading “How to change logo of SugarCRM application”
Tag: Configuration
Get Magento Website meta data and configurations data
Following functions will help you to get Magento meta data like “Default Title”, “Default Description”
To get Default Title:
$default_title= Mage::getStoreConfig('design/head/default_title');
To get Default Description:
$default_description = Mage::getStoreConfig('design/head/default_description');
To get a configuration value:
$field_value = Mage::getStoreConfig('section_code/group_code/field_code'); // return value
To get a configuration group:
$config = Mage::getStoreConfig('section_code/group_code'); // return array()