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 retrieve the store information.[code]{{config path="design/footer/copyright"}}[/code]Enjoy, and if you found this useful of have any other questions then leave a comment below!

Previous
Previous

Disable Wishlist Functionality in Magento

Next
Next

Retrieve VAT from Store Information in Magento with PHP