AI Search
Classic Search
 Search Phrase:
 Search Type:
Advanced search options
 Search in Forums:
 Search in date period:

 Sort Search Results by:

AI Assistant
Notifications
Clear all

[Solved] Disable online/offline members status

10 Posts
3 Users
5 Reactions
3,956 Views
Posts: 212
 fawp
Topic starter
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
(@fawp)
Reputable Member
Joined: 7 years ago
[#17050]

Hi support

 

I followed the advice given in this thread to disable members being shown online/offline but it does not work for me.

 

I have added the code below to "Custom CSS Code:" in the Styles menu

#wpforo #wpforo-wrap .wpfl-4 .wpf-parent-post .wpf-right .wpf-content-head-top .wpf-author-name i {
   display: none;
}

 

Then I cleared all caches, went on main page and pressed CTRL+F5 twice, but the dot is still showing?

I have also checked that the code is included in colors.css.

 

Can you advise? I'm on wpForo 1.9.7

 

Thanks


9 Replies
Tutrix
Posts: 1519
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
(@tutrix)
Noble Member
Joined: 6 years ago

@fawp

 

online

.wpfcl-8 {
display: none;
}

offline

.wpfcl-0 {
display: none;
}

8 Replies
 fawp
(@fawp)
Joined: 7 years ago

Reputable Member
Posts: 212
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian

@tutrix yes it works! Thank you so much 👍


 fawp
(@fawp)
Joined: 7 years ago

Reputable Member
Posts: 212
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian

Hi @tutrix 

 

I had not realized: by using the CSS code above, if you have Font Awesome icons on your forum front page they will disappear (attached pic of which icons I'm talking about).

 

To retain the icons on the forum frontpage I tried the following CSS code

.wpfsx .wpfcl-8 {
display: none;
}

.wpfsx .wpfcl-0 {
display: none;
}

This code does retain the icons on your frontpage, however it does not allow both the offline and the online icon to be switched off together, meaning it will only work if I use the code separately.

 

So if I use

.wpfsx .wpfcl-8 {
display: none;
}

 I will retain Font Awesome icons on frontpage, get rid of online icons, but not offline icons.

 

If I use

.wpfsx .wpfcl-0 {
display: none;
}

I will retain Font Awesome icons on frontpage, get rid of offline icons, but not online icons.

 

But if I use the combined code, both the offline and online icons will show up, meaning, the combined code won't achieve the objective.

 

Are you able to reproduce the above?

 

Thanks

faw icons lost

Chris
(@chris)
Joined: 5 years ago

Famed Member
Posts: 3610
Tutrix
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian

Hi @fawp,

Please give us your forum URL.


 fawp
(@fawp)
Joined: 7 years ago

Reputable Member
Posts: 212
Tutrix
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian

@chris I am working on a localhost.


Chris
(@chris)
Joined: 5 years ago

Famed Member
Posts: 3610
Chris
Tutrix
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian

@fawp,

Try this codes

.wpfsx .wpfcl-0 {
display: none !important;
}

.wpfsx .wpfcl-8 {
display: none !important;
}

 fawp
(@fawp)
Joined: 7 years ago

Reputable Member
Posts: 212
Chris
Tutrix
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian

Hi @chris 

 

Thanks, I had already tried adding the !important bit to the code above, it did not make a difference unfortunately.


Tutrix
(@tutrix)
Joined: 6 years ago

Noble Member
Posts: 1519
Chris
Chris
Tutrix
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian

@fawp 

try this code

#wpforo #wpforo-wrap .wpfsx.wpfcl-0 {
   display: none !important;
}

#wpforo #wpforo-wrap .wpfsx.wpfcl-8 {
   display: none !important;
}

 fawp
(@fawp)
Joined: 7 years ago

Reputable Member
Posts: 212
Chris
Tutrix
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian

@tutrix with this code the forum FAW icons are still in place and you can't see either online or offline icons being displayed next to users in the forum.

 

I think this works. Many thanks for your help as always 👍 


Share: