index page is blank after changing index.php
I am using a free template..."the bookshelf". I went to
includes/languages/ENGLISH/CUSTOM/index.php
and I edited the heading title at the bottom. I made sure I kept the
' ' marks at the end. As soon as I change this, my home page is blank. I can go to all my other pages if I type the direct url. But my main page is blank.
here's the code I changed:
// 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', 'Discount Homeschool Curriculum offers top quality curriculum at a price your family can afford. We guarantee our prices can't be beat!');
} 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', 'Discount Homeschool Curriculum offers top quality curriculum at a price your family can afford. We guarantee our prices can't be beat!');
}
?>
heres a link:
www.discounthomeschoolcurriculum.com
what has happened?
Thanks for the help!:yuck:
Re: index page is blank after changing index.php
I just wanted to add that before I made these changes everything was working just fine.
Re: index page is blank after changing index.php
Easy correction. :smile:
define('HEADING_TITLE', 'Discount Homeschool Curriculum offers top quality curriculum at a price your family can afford. We guarantee our prices can\'t be beat!');
If you don't escape the single quote in can't, you will have a syntax error.
Re: index page is blank after changing index.php
Thanks a million. That worked perfect!
This forum rocks!:clap: