How to Get the Copyright Text in PHP and the CMS for Magento
As this is a very useful thing to do when customising a Magento template / theme and I could find nothing on-line to quickly demonstrate how to do this here you go: [code]<?php $storeCopyright = Mage::getStoreConfig(‘design/footer/copyright’); echo $storeCopyright; ?>[/code] If you need to add this to a CMS page then you can use this to … Read more