
Originally Posted by
Blake81
I've searched here in the help, and I can't find out how to remove the "Copyright Zen Cart..." text from the footer of emails sent from ZC, I'm using my own graphics in the emails, so it's my understanding that this is allowed. I tried includes/languages/english.php, and that didn't work.
[YOUR_ADMIN_LOCATION]/includes/languages/english/email_extras.php
Line #39 (at least on my copy of Zen Cart 1.3.8a).
For future Reference, use...
Admin > Tools > Developers Tool Kit
and search for the constant you which to change (constants are in all upper case), in this instance what you wish to change is the Constant: EMAIL_FOOTER_COPYRIGHT
when you find a constant you wish to change leave off the "$" at the front should it have one (otherwise Zen Cart's Developers Took Kit seems to be unable to find what you are looking for.)
I'm using my own graphics in the emails, so it's my understanding that this is allowed.
You have to change ALL aspects of the template used in-order to Remove the Zen Cart portion from any portion of your website. The change I made was fixing it so the Copyright is mine, but references Zen Cart like this:
Code:
define('EMAIL_FOOTER_COPYRIGHT','Copyright © ' . date('Y') . ' <a href="http://www.shopwells.com.com" target="_blank">ShopWells.com</a>. Powered by <a href="http://www.zen-cart.com" target="_blank">Zen Cart</a>');