Quote:
Originally Posted by Nicksyb
I have now got a template up on the site and just fiddeling now.
I had a nightmare with the WYSIWYG editor and the basic template that Zen Cart came with. It decided to put the writing all over the place
But I am now fixed and adding bits and bobs. Just got to get rid of the congratulations statement on the home page 
|
The "congratulations for installing zencart part?"
Open up the file:
includes/languages/english(if your using english

)/index.php in your code editor (notepad can do it too) and line 56 allows you to redefine it like this:
PHP Code:
/*Replace this line with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
define('HEADING_TITLE', 'Congratulations! You have successfully installed your Zen Cart™ E-Commerce Solution.');
change it to (note the apostrophe's still in place e.t.c, these must stay or you break the code.
PHP Code:
/*Replace this line with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
define('HEADING_TITLE', 'Welcome to NicksyB.com');
