This topic has 6 replies, 3 voices, and was last updated 7 years by Radu.

  • Author
  • #170817
     wilhalphoto
    Participant

    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 !
    -Will

    Attachments:
    You must be logged in to view attached files.
    #170867
     Laura
    Moderator

    Hello, 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 solution

    Laura 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 🙂

    #171265
     Radu
    Moderator

    Hi,

    Just add this css to quick css area from wp-admin -> theme options -> quick css

    COPY CODE
    
    span.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 solution
    #171340
     wilhalphoto
    Participant

    Sorry, it still does not work.

    -Will

    #171430
     Radu
    Moderator

    Hi,

    Replace the code with this one, it contains the !important declaration.

    COPY CODE
    
    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;
    }
    

    If still not works, just add the next code instead of the CSS to wp-content/themes/kleo-child/functions.php

    COPY CODE
    
    function 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 solution
    #171707
     wilhalphoto
    Participant

    Hi,

    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!
    -Will

    #171751
     Radu
    Moderator

    The 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
Viewing 7 posts - 1 through 7 (of 7 total)

The forum ‘Bugs & Issues’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?