Re: Front Page Editing how to get rid of the"Congratulations, you have successfully
That is exactly what I did last time. I took out the statement both times and all I got after that was a white page.. I started all over again after that .. please I dont want to do that again..
I understand you say to take out that statement and save it , put it back into the proper place on my web site.. why then did I get a white page.. am afraid to do this again..
Re: Front Page Editing how to get rid of the"Congratulations, you have successfully
Out,
So the first one is your fix, most important part is leave the single quotes on either side of the wording EX: 'wording', just change wording and leave the single quotes..
Re: Front Page Editing how to get rid of the"Congratulations, you have successfully
Change/remove the text in both places.
To remove, leave the opening and closing single quotes in place. Just remove the text in between.
Code:
// This section deals with the "home" page at the top level with no options/products selected
/*Replace this text 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.');
} elseif ($category_depth == 'nested') {
// This section deals with displaying a subcategory
/*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.');
}
would become
Code:
// This section deals with the "home" page at the top level with no options/products selected
/*Replace this text with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
define('HEADING_TITLE', '');
} elseif ($category_depth == 'nested') {
// This section deals with displaying a subcategory
/*Replace this line with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
define('HEADING_TITLE', '');
}
Re: Front Page Editing how to get rid of the"Congratulations, you have successfully
do I leave the words 'heading title' there? and just then put what i want in both places making sure i have left the ' and the ' between my text?
Re: Front Page Editing how to get rid of the"Congratulations, you have successfully
Quote:
Originally Posted by
outlawcat
do I leave the words 'heading title' there? and just then put what i want in both places making sure i have left the ' and the ' between my text?
Out,
Yes, you are right
Re: Front Page Editing how to get rid of the"Congratulations, you have successfully
okay then will give it another go around. please if I get white pages again be their for me... last time I just started all over and I just cant do that again. lol.. please call me Cat by the way..
Thanks for the help
Cat
Re: Front Page Editing how to get rid of the"Congratulations, you have successfully
woops forgot how do I get that "Tagline here" out of their?
Thanks again
Re: Front Page Editing how to get rid of the"Congratulations, you have successfully
i now have white page again and this time all i did was change one word to see what would happen.. didnt touch anything else. changed a word in the first and second times that this is stated.. now what!!
Re: Front Page Editing how to get rid of the"Congratulations, you have successfully
Out,
Please post your index.php file so I can view your changes
Re: Front Page Editing how to get rid of the"Congratulations, you have successfully
this is exactly how it looks
This section deals with the "home" page at the top level
with no options/products selected /*Replace this text 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.');} elseif ($category_depth == 'nested') { // This section deals with
displaying a subcategory /*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.'); }?>