Magento is a full-featured e-commerce solution which uses a proprietary template structure combining various functionality from XML, HTML and PHP together to create dynamic and secure catalog pages and customer management features. By default, Magento places its own tagline and copyright information in the footer which may be undesirable. This information is stored in the “footer.phtml” file and easily modified, however, locating the file to change can be challenging and may vary depending on the Magento theme being used.
- Connect to your Web server and enter your active theme folder located under “app/design/frontend.” This folder should contain two sub-folders, “Base” and “Default.”
- Open “base/default/template/page/html” and look for the “footer.phtml” file. If you cannot find it, it may be necessary to download your Magento theme folder and search for the file using Windows Explorer.
- Open the footer file in an HTML or text editor. You may modify the footer contents beginning with the HTML following the “?>” line. For example, to change the default text that appears in the footer, you would remove everything between the ” <div class=”footer”>” and its closing “</div>” tag and replace it with your own text:
<div class=”footer”> <p>Copyright MyStore.com. </p> </div>
- Save the file and reconnect to your Web server. Navigate to the location of the “footer.phtml” file and rename it to “footer.old” to serve as a backup in case something goes wrong. Upload your new footer.phtml file to the same location and reload your Magento site to review the changes.
