Hello,

I am trying to move the Welcome Guest! Would you like to log yourself in? text from the main center column to a sidebox. I have a black sidebox installed and am able to get the define statements from the index.php for the Welcome Guest Text, but when it displays in the side box I get Hello %s! When logged in.

Does anyone know how to change the %s to the actual Session Variable or get the %s to actually work? What files or text do I need to include? In my sidebox defines.php file I include the following 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_GREETING_PERSONAL', 'Hello <span class="greetUser">%s</span>!');

this is how I output the defined statement:

$content .= '<p>' . TEXT_GREETING_PERSONAL . '</p>';

ANY help you can provide would be much appreciated!!

Thank you!
Natalie <><