-
Author
-
August 16, 2017 at 08:43 #170817wilhalphotoParticipant
Hi,
I installed the BuddyPress Member Type Generator plugin as requested to take advantage of “MemberType” filtering for the Buddypress elements. So, the filtering now works.
But, one of the setting on Members Masonry Setting, “Online Status” does NOT work. Even when it was set to “Hide” it still shows their status.
Thanks !
-WillAttachments:
You must be logged in to view attached files.August 16, 2017 at 16:28 #170867LauraModeratorHello, will assign the ticket to a higher support level who can help and advise you in your query.
Thanks! ?Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
August 21, 2017 at 15:00 #171265RaduModeratorHi,
Just add this css to quick css area from wp-admin -> theme options -> quick css
COPY CODEspan.high-bg.kleo-online-status { position: absolute; } span.high-bg.kleo-online-status { background: #4db7f7 !important; border-radius:10px; border:2px solid; }
Let me know, also you can change 4db7f7 with green or any other color.
All should be good, the online status should be shown when you choose to show it, let me know.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 22, 2017 at 17:57 #171430RaduModeratorHi,
Replace the code with this one, it contains the !important declaration.
COPY CODEspan.high-bg.kleo-online-status { position: absolute !important; } span.high-bg.kleo-online-status { background: #4db7f7 !important; border-radius:10px !important; border:2px solid !important; }
If still not works, just add the next code instead of the CSS to wp-content/themes/kleo-child/functions.php
COPY CODEfunction sqr_fix_hover_220820172() { echo ' <style> span.high-bg.kleo-online-status { position: absolute !important; } span.high-bg.kleo-online-status { background: #4db7f7 !important; border-radius:10px !important; border:2px solid !important; }</style> '; } add_action('wp_footer', 'sqr_fix_hover_22082017');
NOTE : Child theme needs to be installed and activated.
Let me know
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 25, 2017 at 05:01 #171707wilhalphotoParticipantHi,
Do I need to logout and log back in and purge the cache, every time I try/add/replace those codes? because none of them works.
What’s the drawback of just adding this to the page’s custom css:
.item-meta{
display: none;
}thanks!
-WillAugust 25, 2017 at 19:42 #171751RaduModeratorThe css should be added thru those PHP functions cuz it should be loaded latest at the end ( in the footer ) to not be overwritten.
So just add those in functions.php child theme, so it’s mandatory to add them those from the functions.php file.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘Bugs & Issues’ is closed to new topics and replies.