The post title might be a little confusing, let me enlighten you π
Have you ever wanted to print a value from your Magento Admin?
Have you ever needed to retrieve a value from a custom Module?
You can easily do that with the following core function:
<?php echo Mage::getStoreConfig(‘general/store_information/name’); ?>
As you can see, this getStoreConfig accepts a parameter. This parameter is the location of the value youβre trying to retrieve.
In the example above weβre printing:
System > Configuration > General > Store Information > Name
(Visited 69 times, 1 visits today)