Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Need a little help :)

Need a little help :)

Locked

Views: 1,047

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
21 Mar 2007, 6:22 PM
#1
mooncavecrystals avatar

mooncavecrystals

Zen Follower

Join Date:
Sep 2006
Posts:
455
Plugin Contributions:
0

Need a little help :)

I would like to remove the text on the main page that says, welcome guest but am not sure exactly how much I remove. In other words, the greeting they see when they enter the shopping cart. Do i just remove the text itself? or the entire line? If you could give me the exact piece i remove, it would be appreciated.

21 Mar 2007, 7:35 PM
#2
bbrian017 avatar

bbrian017

New Zenner

Join Date:
Mar 2007
Posts:
12
Plugin Contributions:
0

Re: Need a little help :)

Just remove the text and put something like "SIGN IN HERE" or "CREATE YOUR ACCOUNT NOW" or you want nothing ONLY take out the text!!!

23 Mar 2007, 3:34 AM
#3
mooncavecrystals avatar

mooncavecrystals

Zen Follower

Join Date:
Sep 2006
Posts:
455
Plugin Contributions:
0

Re: Need a little help :)

does that include the comma before and after the text??

23 Mar 2007, 4:00 AM
#4
afo avatar

afo

Totally Zenned

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

Re: Need a little help :)

No. If the current content is

// Showcase vs Store
if (STORE_STATUS == '0') {
  define('TEXT_GREETING_GUEST', 'Welcome <span class="greetUser">Guest!</span> Would you like to <a href="%s">log in</a>?');
} else {
  define('TEXT_GREETING_GUEST', 'Welcome, please enjoy our online showcase.');
}

replace it by

// Showcase vs Store
if (STORE_STATUS == '0') {
  define('TEXT_GREETING_GUEST', '');
} else {
  define('TEXT_GREETING_GUEST', '');
}

Why do you want to remove it completely? :dontgetit

23 Mar 2007, 4:08 AM
#5
mooncavecrystals avatar

mooncavecrystals

Zen Follower

Join Date:
Sep 2006
Posts:
455
Plugin Contributions:
0

Re: Need a little help :)

thanks :)
I am removing it entirely because i will be installing the new mod where folks can log in, create an account, or purchase without creating an account. :) Less confusion if I remove it :)

thanks for the help!