Book Image

OpenCart Theme and Module Development

By : Rupak Nepali
Book Image

OpenCart Theme and Module Development

By: Rupak Nepali

Overview of this book

Table of Contents (13 chapters)
OpenCart Theme and Module Development
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Removing the copyright information in the footer


Although we did not recommend removing the copyright from the footer, most of us need to do it, so we'll show you how to remove the copyright from the footer. Go to catalog/view/theme/packttheme/template/common/, open footer.tpl, and find the following lines of code:

<p><?php echo $powered; ?></p> 

Remove this code and the copyright will removed. Now, you can place your own copyright sentences.

Although not recommended, another way is to go to catalog/language/english/common/footer.php and find the following line:

$_['text_powered']      = 'Powered By <a href="http://www.opencart.com">OpenCart</a><br /> %s &copy; %s';

Change this text as per your requirements. You need to know that the first %s sign shows your store name and the other %s sign shows the date.