I am new to Zen Cart and would like to take the first steps in customizing a default installation. (I have installed the latest version, 1.3.8a, with all of the patches.) I started by clicking the link Tutorials/FAQ and then All Time Favorites - FAQs (16) I then chose How do I change the "Sales Message Goes Here" or "Tagline Here" text? So here I begin by following the instructions in:
How do I change the "Sales Message Goes Here" or "Tagline Here" text?
NB: By default the text “Sales Message Goes Here” is located in includes/languages/english/classic/header.php define('HEADER_SALES_TEXT', 'Sales Message Goes Here');
Recomended additional reading:
How do I set up the template overrides?
I then navigate to:
How do I set up the template overrides?
Modifying the default Language File - /includes/languages/english.php
Example: You need to modify the title, so that instead of reading Zen Cart!, it reads Your Store Name!
Make a directory with the same name as your template name in /includes/languages, so you now have /includes/languages/custom.
Copy english.php to this directory.
Then, you can make any needed modifications in your new:
/includes/languages/custom/english.php
So when I begin to edit my newly copied file, /catalog/includes/languages/custom/english.php, I encounter the following lines, commented out as such:
// FOLLOWING WERE moved to meta_tags.php
//define('TITLE', 'Zen Cart!');
//define('SITE_TAGLINE', 'The Art of E-commerce');
//define('CUSTOM_KEYWORDS', 'ecommerce, open source, shop, online shopping');
// END: moved to meta_tags.php
I am willing to apply myself assiduously to the task of customizing my store, but would prefer not to engage in an iterative process similar to learning to traverse a maze. Any recommendations as to a logical, productive path wil be appreciated.



