Change
Code:
if (STORE_STATUS == '0') {
define('TEXT_GREETING_GUEST', 'Welcome <span class="greetUser">Guest!</span> Would you like to <a href="%s">log yourself in</a>?');
} else {
define('TEXT_GREETING_GUEST', 'Welcome, please enjoy our online showcase.');
}
define('TEXT_GREETING_PERSONAL', 'Hello <span class="greetUser">%s</span>! Would you like to see our <a href="%s">newest additions</a>?');
define('TEXT_INFORMATION', 'Define your main Index page copy here.');[/color]
to
Code:
if (STORE_STATUS == '0') {
define('TEXT_GREETING_GUEST', '');
} else {
define('TEXT_GREETING_GUEST', ''');
}
define('TEXT_GREETING_PERSONAL', '');
define('TEXT_INFORMATION', 'Define your main Index page copy here.');[/color]
I'm not sure about the TEXT_INFORMATION. I'd have to look at what I have.