Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

how to remove the welcome guest message....


VladDrakul

Recommended Posts

I have addead a login infobox contribution now it appears a login zone on the right column and also a welcome guest message and login url on the top of the body page.

 

Where can I disable that welcome message and login url on the body of the shop?

Link to comment
Share on other sites

in language files

Please read this line: Do you want to find all the answers to your questions? click here. As for contribution database it's located here!

8 people out of 10 don't bother to read installation manuals. I can recommend: if you can't read the installation manual, don't bother to install any contribution yourself.

Before installing contribution or editing/updating/deleting any files, do the full backup, it will save to you & everyone here on the forum time to fix your issues.

Any issues with oscommerce, I am here to help you.

Link to comment
Share on other sites

  • 2 weeks later...

In catalog/includes/languages/english.php (or whichever language you want) look for the :

 

 

 

define('TEXT_GREETING_PERSONAL', 'Welcome back <span class="greetUser">%s!</span> Would you like to see which <a href="%s"><u>new products</u></a> are available to purchase?');

 

and delete whichever part you do not want. For instance:

 

 

 

define('TEXT_GREETING_PERSONAL', 'Welcome back <span class="greetUser">%s!</span>);

 

 

 

This should give you what you need

Link to comment
Share on other sites

If you want to remove the line completely just comment it out in your catalog/index.php looks like this (assuming thats what your asking since you have the login box)

 

<td class="main"><?php echo tep_customer_greeting(); ?></td>

 

to this

 

<td class="main"><?php // echo tep_customer_greeting(); ?></td>

 

the line is towards the bottom of the file

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...