Zen Cart Logo
Forums / General Questions / Removing "Welcome Guest" from store

Removing "Welcome Guest" from store

Locked

Views: 2,185

Results 1 to 8 of 8
This thread is locked. New replies are disabled.
16 Mar 2008, 4:34 AM
#1
splishsplashbb avatar

splishsplashbb

Zen Follower

Join Date:
Dec 2006
Location:
kenner, la
Posts:
110
Plugin Contributions:
0

Removing "Welcome Guest" from store

I would like to remove the "Welcome guest would you like to log yourself in" from the store. I dont see a need for it their as i already have a log in at the top page and when someone orders their is a sign up section anyone and i just dont like the look. I have searched and cant find where i would remove it from.

Also i messed something up where i had to redo my entire page and finally have it right except i want all the wording that falls under "catagories, information and at the top where the catagories are again listed the "home" and "log in" words to be the purple that is in the reviews box i just cant find where in the stylesheet i change this i have looked so much my eyes hurt thank you so much

maggie
www.playthingsforlovers.com

16 Mar 2008, 5:39 AM
#2
afo avatar

afo

Totally Zenned

Join Date:
Aug 2004
Location:
New York City
Posts:
6,800
Plugin Contributions:
0

Re: Removing "Welcome Guest" from store

In the admin, under tools->developers tool kit, do a search for the phrase. You'll find it appears in includes/languages/english/YOUR_TEMPLATE/index.php

define('TEXT_GREETING_GUEST', 'Welcome <span class="greetUser">Guest!</span> Would you like to <a href="%s">log in</a>?'); 

Remove it by removing the text between the single quotes.

define('TEXT_GREETING_GUEST', ''); 
16 Mar 2008, 8:55 AM
#3
crooked_halo avatar

crooked_halo

Zen Follower

Join Date:
Feb 2008
Location:
Western Australia
Posts:
192
Plugin Contributions:
0

Re: Removing "Welcome Guest" from store

There is a much easier way - Admin/Configuration/Layoutsettings - find - Customer Greeting - Show On Index and set to 0

16 Mar 2008, 4:51 PM
#4
splishsplashbb avatar

splishsplashbb

Zen Follower

Join Date:
Dec 2006
Location:
kenner, la
Posts:
110
Plugin Contributions:
0

Re: Removing "Welcome Guest" from store

wow that was easy i got it removed thank you

Also does anyone know where i make the left side of the catagory boxes the same purple as the right column boxes i have searched and cant find it

maggie

16 Mar 2008, 5:21 PM
#5
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Removing "Welcome Guest" from store

splishsplashbb:

wow that was easy i got it removed thank you

Also does anyone know where i make the left side of the catagory boxes the same purple as the right column boxes i have searched and cant find it

maggie

add the following to your stylesheet.css (NB: since you are using the classic template, you will find this in includes/templates/classic/css

#categories a {

color: #000; / change this to the color you desire/

}

#categories a:hover {

color: #000; / change this to the color you desire/

}

16 Mar 2008, 6:45 PM
#6
splishsplashbb avatar

splishsplashbb

Zen Follower

Join Date:
Dec 2006
Location:
kenner, la
Posts:
110
Plugin Contributions:
0

Re: Removing "Welcome Guest" from store

Thank you that worked out great

maggie

16 Mar 2008, 6:56 PM
#7
splishsplashbb avatar

splishsplashbb

Zen Follower

Join Date:
Dec 2006
Location:
kenner, la
Posts:
110
Plugin Contributions:
0

Re: Removing "Welcome Guest" from store

I forgot to ask this one question if you go to my site www.playthingsforlovers.com and click on say Bath Products i need the words to be white like the one that says product image the ones listed as item name and price are purple i cant seem to find where i changed it to purple to get back to white

maggie

16 Mar 2008, 7:17 PM
#8
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Removing "Welcome Guest" from store

splishsplashbb:

I forgot to ask this one question if you go to my site www.playthingsforlovers.com and click on say Bath Products i need the words to be white like the one that says product image the ones listed as item name and price are purple i cant seem to find where i changed it to purple to get back to white

maggie

try adding this to your stylesheet.css

.productListing-heading, .productListing-heading a {
color:#fff;
}