YAFLogo

ARIJIT
  • ARIJIT
  • 50.6% (Neutral)
  • YAF Forumling Topic Starter
13 years ago
Hello,

I am wanting to change the text "Welcome Guest! To enable all features please try to register or login." which is visible when a user is not at all logged in. I want to change this text to something which I like and if possible, I also want to change the red logo with this particular text to a preferred picture of mine.

Please let me know how can I do this and oblige me thereby.

Thanks.

Sponsor
tha_watcha
  • tha_watcha
  • 100% (Exalted)
  • YAF.NET Project Lead 🤴 YAF Version: 4.0.0 rc 2
13 years ago

I am wanting to change the text "Welcome Guest! To enable all features please try to register or login." which is visible when a user is not at all logged in. I want to change this text to something which I like and if possible,

You need to modify the languages file, in folder languages. For english english.xml

<Resource tag="WELCOME_GUEST">Welcome Guest! To enable all features please try to register or login.</Resource>

I also want to change the red logo with this particular text to a preferred picture of mine.

The File of that image is called error.png and you can find it in the theme folder of the the theme you use.

Observe
  • Observe
  • 69.8% (Friendly)
  • YAF Lover
11 years ago
How can we eliminate the "Welcome Guest!..." message altogether?

I don't like the way it looks on my site, and I don't consider it necessary having a message at all in my case.

Thanks

tha_watcha
  • tha_watcha
  • 100% (Exalted)
  • YAF.NET Project Lead 🤴 YAF Version: 4.0.0 rc 2
11 years ago

How can we eliminate the "Welcome Guest!..." message altogether?

I don't like the way it looks on my site, and I don't consider it necessary having a message at all in my case.

Thanks

Originally Posted by: Observe 

The only way is to hide it via css.

By adding this to your theme.css

.guestUser {
 display:none;
visibility:hidden
}

Observe
  • Observe
  • 69.8% (Friendly)
  • YAF Lover
11 years ago
Perfect! Thanks. 🙂