
Originally Posted by
OFelixCulpa
I am dealing with the same issue, but for a different reason. I would like to replace "Zen Cart!" in the title for my admin. I understand that users won't see it, and it doesn't bother me to see it except for printing of invoices and packing slips, where it prints out on the very top left of the page.
I know I could change my browser's print settings to avoid this, but I would rather change the metatag title in my admin (so I don't have to keep changing browser settings before and after each time I print packing slips.
I went here:
includes\languages\english\MY_TEMPLATE\metatags.php
and changed this:
define('TITLE','Zen Cart!');
to this:
define('TITLE','MY_TITLE');
but the template override apparently doesn't apply to admin (of course).
I know I can edit the same line in
includes\languages\english\metatags.php
to change accomplish this, but I am wondering if there is a better way (since I've read so many warnings against editing non-override files).
Thanks
Just edit your /admin/includes/languages/english.php file directly (no override):
Code:
// removed for meta tags
// page title
//define('TITLE', 'Zen Cart');
// include template specific meta tags defines
remove the // in front of this line, and set the text you desire to display:
Code:
//define('TITLE', 'Zen Cart');