Forum Replies Created

Viewing 40 posts - 481 through 520 (of 2,990 total)
  • Author
  • in reply to: How to remove matching? #189277
     Radu
    Moderator

    Hi,

    By adding this css to quick css area

    COPY CODE
    
    .circular-item {
        display: none !important;
    }
    

    Add the css to wp-admmin -> theme options -> styling options -> quick css

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: 3 New building Issues #189263
     Radu
    Moderator
    Not marked as solution
    in reply to: lo-res images on Members Grid Element #188876
     Radu
    Moderator

    Hi,

    Check in the plugin settings, set large for avatar size and specity the size

    If not works maybe it’s needed to increase the avatar size from bp-custom.php

    Just follow this : https://codex.buddypress.org/themes/guides/customizing-buddypress-avatars/

    Just add the next in child theme functions or in bp-custom.php

    COPY CODE
    
    define ( 'BP_AVATAR_THUMB_WIDTH', 250 );
    define ( 'BP_AVATAR_THUMB_HEIGHT', 250 );
    

    And replace 250 with your desired value

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Responsive Issues #188808
     Radu
    Moderator
    Not marked as solution
    in reply to: Adding post to menu, page turns grey #188785
     Radu
    Moderator

    Hi,

    I saw that… wired, i will speak with core developer about this, meanwhile you can use this fix

    COPY CODE
    
    
    .second-menu-main ul#menu-header-icons li a[href$="media/"] span {
      float: inherit !important;
      font-size: inherit !important;
      font-weight: initial !important;
      padding: initial !important;
      height: initial !important;
      line-height:  initial !important;
      border-radius:  initial !important;
      letter-spacing:  initial !important;
      text-align:  initial !important;
      background-color:  initial !important;
      color:  initial !important;
      margin-top:  initial !important;
      margin-left:  initial !important;
    }
    .second-menu-main ul#menu-header-icons li a[href$="media/"] span:hover {
        color: inherit !important;
    }
    

    Also if you can to add the item in the menu by using custom link and remove the / slash from the end the css will no more target that.

    It was used like that cuz the rtmedia counts the media that you upload and add’s a span in the menu without any specific class.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Another Embeds problem #188539
     Radu
    Moderator

    Hi,

    In this case revert to this one

    COPY CODE
    
    #buddypress #activity-stream p iframe[src*='vpinball.com'] {
        display:none !important;
    }
    

    Then to can apply this rule on certain parts of your website you will need to

    COPY CODE
    
    .pageclass iframe[src*='vpinball.com'] {
        display:none !important;
    }
    

    So for the forums will be

    COPY CODE
    
    .bbpress iframe[src*='vpinball.com'] {
        display:none !important;
    }
    

    See the next image to can figure out how you can target specific components or pages.

    Do it for your desired parts or website

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    Works for me

    Maybe you don’t notice the change cuz the css keep it to 94px

    COPY CODE
    
    .search-item .avatar {
        width: 150px;
        height: 150px;
    }
    

    Adding also this will make any difference ?

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: take a photo #188531
     Radu
    Moderator
    Not marked as solution
    in reply to: 3 New building Issues #188518
     Radu
    Moderator
    Not marked as solution
    in reply to: Top menu social media #188447
     Radu
    Moderator

    Hi,

    To switch the positions of menu and icons just add this css

    COPY CODE
    
    #header div#top-social {
        float: right !important;
    
    }
    
    #header .top-menu.col-xs-12.col-sm-7.no-padd {
        float: left !important;
    }
    
    #header ul.kleo-social-icons {
        float: right;
    }
    
    #header ul#menu-top {
        float: left;
    }
    

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS

    Just i’ve implemented the what’s app into social links, It’s ok to wait until the update or i gave you the files that should be replaced ?

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Responsive Issues #188441
     Radu
    Moderator
    Not marked as solution
    in reply to: Another Embeds problem #188428
     Radu
    Moderator

    Hi,

    replace it with this one

    COPY CODE
    
    iframe[src^='http://vpinball.com'],iframe[src^='https://vpinball.com'], iframe[src^='vpinball.com'] {
        display:none !important;
    }
    

    Let me know

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Another Embeds problem #188219
     Radu
    Moderator

    Hi,

    You can try to do that by using this css

    COPY CODE
    
    iframe[src*='vpinball.com'] {
        display:none !important;
    }
    

    The rule will be applied cross site.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: expand height of the input box in activity #188218
     Radu
    Moderator

    Hi,

    Apply this CSS then let me know

    COPY CODE
    
    @media(max-width:768px) {
        div#whats-new-options > div {display: table;}
    
        span#activity-visibility {
            display: block;
        }
    
        #buddypress #whats-new-form .active #whats-new-options {
            height: 80px !important;
            vertical-align: middle;
        }
    
        #buddypress #whats-new-form #whats-new-options #whats-new-submit {
            text-align: center;
        }
    }
    
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: “Like” Button #188155
     Radu
    Moderator
    Not marked as solution
    in reply to: WooCommerce checkout styling issue Mobile #188145
     Radu
    Moderator
    Not marked as solution
    in reply to: WooCommerce checkout styling issue Mobile #188144
     Radu
    Moderator
    Not marked as solution
    in reply to: Another Embeds problem #188133
     Radu
    Moderator

    Hi,

    Just add this css in wp-admin -> theme options -> general options -> quick CSS.

    COPY CODE
    
    #buddypress #activity-stream p iframe[src*='vpinball.com'] {
        display:none !important;
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Page after registration #188124
     Radu
    Moderator

    Work for me just i’ve tested

    COPY CODE
    
    add_action( 'wp_logout', 'SQ7R_logout_redirect');
    function SQ7R_logout_redirect(){
        wp_redirect(site_url( '/welcome/' ));
        exit();
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: expand height of the input box in activity #188123
     Radu
    Moderator

    Hi,
    I think we have changed that in the past, but if you need a animation like that use the next CSS

    COPY CODE
    
    #buddypress form#whats-new-form #whats-new-content {
        max-height: 74px!important;
         -webkit-transition: max-height 1s; 
      -moz-transition: max-height 1s; 
      -ms-transition: max-height 1s; 
      -o-transition: max-height 1s; 
      transition: max-height 1s;  
    }
    #buddypress form#whats-new-form #whats-new-content.active {
     -webkit-transition: max-height 1s; 
      -moz-transition: max-height 1s; 
      -ms-transition: max-height 1s; 
      -o-transition: max-height 1s; 
      transition: max-height 1s;  
      overflow: hidden;
      max-height: 274px !important;
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Page after registration #188052
     Radu
    Moderator

    Want to redirect in a certain place after logout ?

    If yes the function will have to be added in wp-content/themes/kleo-child/functions.php and also the child theme should be enabled.

    Replace my-page with your page slug

    COPY CODE
    
    
    function SQ7R_logout_redirect(){
      wp_redirect( home_url('/my-page/') );
      exit();
    }
    add_action('wp_logout','SQ7R_logout_redirect');
    

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: log in page #188038
     Radu
    Moderator
    Not marked as solution
    in reply to: Logo Not redirecting #187986
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator
    This reply has been set as private.
    in reply to: Remove lines next to menu #187865
     Radu
    Moderator

    Hi,

    Use the next css.

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS

    COPY CODE
    
    @media(min-width:768px) {
        li#nav-menu-item-side {display:none !important;}
    }
    

    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
     Radu
    Moderator

    For the online status it means something from your child theme makes the online status to not works, so look for that code or ask your developer about a code alteration in child theme and revert back and test, so there it’s acustom modification maden by you or you developer and you should revert that.

    For the last articles “bug” there is no bug , you cutomization makes that icons white over white and those had becomes invisible, just use this css

    COPY CODE
    
    .widget_recent_entries li:before {
        color: #999 !important;
    }
    

    To make them visible

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Page after registration #187825
     Radu
    Moderator

    Hi,

    Now it’s first time when you say something about facebook login, in you initial request you asked for a redirect immediately after user signup, maybe i’ve not understand correctly or you had not asked correctly what you need to achieve, so please tell me again in detail what you need to achieve.

    If it’s about redirect after signup then just add this snippet

    The function will have to be added in wp-content/themes/kleo-child/functions.php and also the child theme should be enabled.

    COPY CODE
    
    add_action( 'bp_complete_signup', 'buddydev_redirect_after_signup' );
     
    function buddydev_redirect_after_signup() {
        
        $page = 'welcome';//your page slug
        
        bp_core_redirect( site_url( $page ) );
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options -> general settings -> quick CSS

    COPY CODE
    
    #buddypress #activity-stream p img {
        display: inline !important;
        vertical-align: initial;
        max-width: 20px;
        height: auto;
    }
    

    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
    in reply to: expand height of the input box in activity #187365
     Radu
    Moderator

    Hi,

    Just use this css to compact all buttons into one line like…

    CODE:

    COPY CODE
    
    @media(max-width:600px) {
        #buddypress #whats-new-form #whats-new-options #whats-new-submit span{text-align:center !important;margin: 0 auto !important;display: table;}
    
        #buddypress #whats-new-form #whats-new-options #whats-new-submit>input {
            display: block;
        }
    
        div#whats-new-options {
            height: 70px !important;
        }
    
        div#whats-new-options .mpp-upload-buttons {
            height: 90px !important;
            padding: 15px 0;
        }
    
    }
    

    That css will make to look like this after you click on the text area.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How to change loader background color and and icon color #187300
     Radu
    Moderator

    Hi,

    Just add this css to wp-admin -> theme options -> Quick CSS

    COPY CODE
    
    .css3-spinner {
        background: coral;
    }
    
    .css3-spinner > div {
        background: red !important;
    }
    

    Change colors with your desired ones.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Printing #187293
     Radu
    Moderator

    Hi,

    Just add your desired css intro @media print { css rules here } to manipulate the layout while printing

    COPY CODE
    
    @media print {
        body {min-width:1200px}   
    }
    
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    Maybe it’s needed to increase the avatar size

    Just follow this : https://codex.buddypress.org/themes/guides/customizing-buddypress-avatars/

    Just add the next in child theme functions or in bp-custom.php

    COPY CODE
    
    define ( 'BP_AVATAR_THUMB_WIDTH', 250 );
    define ( 'BP_AVATAR_THUMB_HEIGHT', 250 );
    

    And replace 250 with your desired value

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Missing submit or post button #187207
     Radu
    Moderator

    Hi,

    Just add this to wp-admin -> theme options -> Styling options -> Quick css

    COPY CODE
    
    #whats-new-options {
        opacity: 1 !important;
        display: block !important;
    }
    

    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
    in reply to: Printing #187194
     Radu
    Moderator

    Hi,

    I see there you should enable background graphics from see more when you print from browser, see below screenshot

    Then click “Background graphics”

    Here it’s a css that handles the print view that adapt a little the view

    COPY CODE
    
    @media print {
        .profile-cover-inner {display:none;}
        .item-scroll-header {margin: 22px !important;}
        #buddypress ul#activity-stream.activity-list > li {
            list-style: none;
            padding: 15px;
            margin-bottom: 5px;
        }
        .activity-meta > a {
            color: #fff !important;
        }
        #header {position:initial;}
    }
    
    
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Animation work after mouse click #186827
     Radu
    Moderator

    Hi,

    I see, odd issue

    Try to add this function to child theme

    COPY CODE
    
    function handle_rendering_css() {
        add_action('wp_head', 'kleo_custom_head_css');
    }
    add_action('init', 'handle_rendering_css');
    

    The function needs to be pasted in wp-content/themes/kleo-child/functions.php

    NOTE : Child theme needs to be installed and activated.

    IMPORTANT : Go to wp-admin -> theme options -> save options again.

    This will render also the css to the head

    Let me know if the problem continue to happens using that snippet

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator
    Not marked as solution
    in reply to: Checkboxes and radio button horizontally #186590
     Radu
    Moderator

    Hi,

    Just add this css to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    
    form#profile-edit-form .input-options label.option-label {display: inline-block !important;padding-right:10px;}
    form#profile-edit-form .input-options label.option-label input {margin-right:3px;}
    
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: WordPress Multisite – Segregated user base #186578
     Radu
    Moderator

    Hi,

    I see now,

    This shortcode will works only if you mention also the field value.

    COPY CODE
    
    [kleo_member_stats field="City" value=" " online="no"]
    

    In your case should be developed a custom shortcode to count all profiles that had completed the filed “City” with any value, i’ve tried some solutions bot not works.

    This it’s something custom that cannot be covered by our support service, you can ask a developer to do that for you.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi

    Fixed

    There was need only for this rule

    COPY CODE
    
    #buddypress .activity-list .activity-avatar {box-shadow: 0 0 0 5px #fff;}
    

    It looks that the buddypress.css had been changed… or it’s not like the original

    /wp-content/themes/kleo/buddypress/css/buddypress.css

    You can use the default buddyrpess.css file by updating the theme or by replacing this file content : /wp-content/themes/kleo/buddypress/css/buddypress.css with this one : https://pastebin.com/raw/wKkuX1gH

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    Use this CSS

    COPY CODE
    
    #buddypress .activity-list .activity-avatar {box-shadow: 0 0 0 13px #fff;}
    
    #buddypress .activity-list .activity-avatar img, #buddypress .activity-list .activity-avatar  {min-width: 92px !important;height: auto;}
    
    #buddypress .activity-list .activity-avatar {width: initial;}
    
    #buddypress .activity-list .activity-avatar img {min-width: 130px !important;}
    
    #buddypress .activity-list .activity-avatar.rounded {left: -44px !important;}
    

    It’s possible to look pixelated and then you will have to increase from source the img size

    Follow this : https://codex.buddypress.org/themes/guides/customizing-buddypress-avatars/

    Just add the next in child theme functions or in bp-custom.php

    COPY CODE
    
    define ( 'BP_AVATAR_THUMB_WIDTH', 250 );
    define ( 'BP_AVATAR_THUMB_HEIGHT', 250 );
    

    And replace 250 with your desired value

    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 40 posts - 481 through 520 (of 2,990 total)

Log in with your credentials

Forgot your details?