Forum Replies Created

Viewing 40 posts - 19,641 through 19,680 (of 20,101 total)
  • Author
  • in reply to: Multiple KLEO POST GRID and duplicate Posts #48831
     Radu
    Moderator

    Hello,

    Just switch tab from general to data settings there you will see, offset and exclude area ( see screenshot )

    Cheers

    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: Round photos styling #48830
     Radu
    Moderator

    Hello,

    Try this css

    COPY CODE
    
    #item-body > div.buddydrive.single-member img { border-radius:100%; }
    
    #wp-idea-stream div.idea-avatar img {border-radius:100%;}
    
    #wp-idea-stream div.idea-content div.idea-footer img {border-radius:100% !important;}
    
    #buddypress > table > tbody > tr > td.groups-cell > ul > li > a > img {border-radius:100%;}
    

    Let me know if is ok

    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: Translate Kleo Child Theme #48767
     Radu
    Moderator

    Hello,

    Try to reupload kleo-child theme.

    NOTE : If you have made changes in functions.php from kleo-child make a backup of this file.

    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: Round photos styling #48765
     Radu
    Moderator

    Hello,

    Please provide url and dummy account if is need.

    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 make "mailto:" work #48764
     Radu
    Moderator

    Hello,

    To open something when you click on email icon, you need to have an emial client installed like outlook or thunderbird.

    To display that plugin, add this code to your theme functions.php from kleo-child folder ( kleo-child/functions.php )

    COPY CODE
    
    add_action ('bp_after_activity_entry', wpsabox_author_box, '9', );
    

    Let me know if it works.

    Cheers

    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: Facebook login redirect #48761
     Radu
    Moderator

    Hello,

    NO,

    This modification will work in this way : after you will login with facebook in few seconds you will be redirected to buddypress profile to complete all empty fields.

    This is tested on my side and it works. ( latest version of kleo )

    Try to disable plugins that not commed with the theme.

    It should work in your side

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

    Hello,

    About the footer, in my side code are rendering ok ( see screenshot ) i not see any theme problem.

    About the mobile menu, please add this code to your Theme Options Quick CSS or in kleo-child directory /style.css

    COPY CODE
    
    .kleo-main-header.header-left:not(.header-scrolled) .navbar-collapse > ul > li > a {
        line-height: 20px !important;
    }
    

    Let me know if is ok.

    Cheers

    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: Add cover needs padding #48565
     Radu
    Moderator

    Hello,

    Please provide link to give you a solution.

    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: Title tags for groups , members are missing #48564
     Radu
    Moderator

    Hello,

    This issue will be fixed on the next update.

    Sorry for any inconvenience

    Thank you for your understanding

    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: White space in docs plugin #48563
     Radu
    Moderator

    Hello,

    Add this CSS code to your kleo-child/style.css or in Theme Options -> General settings -> Quick Css area

    Fix for big blank space :

    COPY CODE
    
    
    #doc-meta .toggle-switch a, .entry-content p.toggle-switch a { height:auto !important;padding-bottom:5px; }
    
    

    Fix for the star

    COPY CODE
    
    #buddypress a.button.fav:before, #buddypress a.button.unfav:before, #buddypress a.fav.bp-secondary-action:before, #buddypress a.unfav.bp-secondary-action:before {
    line-height: 20px;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hello,
    Try to disable all plugins that not come with the kleo theme and see after.

    Try to update your kleo to latest version.

    Make sure the problem is not caused by your modifications that you made in child theme ( deactivate kleo-child theme and recheck)

    Let me know if it works.

    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: Thin line above menu #48556
     Radu
    Moderator

    Hello,

    That div is inside container which don’t have full width.

    You need to edit your header.php and add extra class or div with full width.

    Hope you understand

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

    Hello,

    Please post a url with that problem, and a print screen

    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: Facebook login redirect #48551
     Radu
    Moderator

    Hello,

    NO,

    Will redirect you to your profile.

    If dosen’t work put that file here : /wp-content/themes/kleo/kleo-framework/lib/function-facebook-login.php

    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: Translation problem #48548
     Radu
    Moderator
    in reply to: Remove divider/border on group photo #48388
     Radu
    Moderator

    Hello,

    COPY CODE
    
    .buddypress div#item-header {background:none;}
    
    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: Remove visibility iof admin #48387
     Radu
    Moderator

    It welcome,

    Try this solution : http://buddydev.com/buddypress/exclude-users-from-members-directory-on-a-buddypress-based-social-network/ or this : http://pastebin.com/phUXcaDN or this :

    COPY CODE
    
    add_action(‘bp_ajax_querystring’,’bpdev_exclude_users’,20,2);
    function bpdev_exclude_users($qs=false,$object=false){
    //list of users to exclude
    
    $excluded_user=’1′;//comma separated ids of users whom you want to exclude
    
    if($object!=’members’)//hide for members only
    return $qs;
    
    $args=wp_parse_args($qs);
    
    //check if we are searching for friends list etc?, do not exclude in this case
    if(!empty($args[‘user_id’])||!empty($args[‘search_terms’]))
    return $qs;
    
    if(!empty($args[‘exclude’]))
    $args[‘exclude’]=$args[‘exclude’].’,’.$excluded_user;
    else
    $args[‘exclude’]=$excluded_user;
    
    $qs=build_query($args);
    
    return $qs;
    
    }
    
    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: upload media i groups #48385
     Radu
    Moderator

    Hello,

    Go to Wp-Admin -> rtMedia -> Buddypress -> Enable media in group Set ON ( see attachment )

    To send invitations you need to have friends, and you need to be administrator of that group.

    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: Galleries, Thumbnails and Lightbox issue #48382
     Radu
    Moderator

    Hello,

    I cannot view the page because returns 404 Error ( Page Not Found )

    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: Single page checkout? #48379
     Radu
    Moderator

    Hello,

    You can try this plugin : http://codecanyon.net/item/woocommerce-one-page-shopping/7158470 is 16$ ( resonable price )

    I don’t know if is compatible with KLEO, but it should.

    Cheers

    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: Live chat plugin #48374
     Radu
    Moderator

    Hello,

    Thank your for your suggestion but i don’t think will be in near future plan.

    You can try 3rd party plugins like : Arrowchat, Cometchat etc..

    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: Title tags for groups , members are missing #48372
     Radu
    Moderator

    Have you tried this plugin ?

    https://yoast.com/wordpress/plugins/seo/

    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: Remove visibility iof admin #48368
     Radu
    Moderator

    Hello Klosurdo,

    Try with this snippet

    COPY CODE
    
    
    function bpdev_exclude_users($qs=false,$object=false){
        
        $excluded_user='1'; // Id's to remove, separated by comma
        
        if($object != 'members' && $object != 'friends')// hide admin to members & friends 
        return $qs;
        
        $args=wp_parse_args($qs);
     
        if(!empty($args['user_id']))
        return $qs; 
        
        if(!empty($args['exclude']))
            $args['exclude'] = $args['exclude'].','.$excluded_user;
        else
            $args['exclude'] = $excluded_user;
        
        $qs = build_query($args);
     
        return $qs;
        
    }
    add_action('bp_ajax_querystring','bpdev_exclude_users',20,2);
     
    // once admin is removed, we must recount the members !
    function bpfr_hide_get_total_filter($count){
        return $count-1;
    }
    add_filter('bp_get_total_member_count','bpfr_hide_get_total_filter');
    
    

    Let me know if it works.

    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: Primary menu hover #48367
     Radu
    Moderator

    Hello,

    Add this CSS to your kleo-child/style.css or in your Theme Options -> General Settings -> Quick CSS

    COPY CODE
    
    
    .kleo-main-header .nav > li.active > a, .kleo-main-header .nav > li > a:hover {
    box-shadow: none !important;
    }
    
    
    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: White space in docs plugin #48363
     Radu
    Moderator

    Hello,

    Please provide url with this page, and a dummy account.

    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: join members issue #48362
     Radu
    Moderator

    Hello,

    Use this plugin : https://wordpress.org/plugins/bp-disable-activation-reloaded/

    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: Translation problem #48360
     Radu
    Moderator

    Hello,

    Try to change site language from Wp-admin -> Settngs -> General ( see screenshot )

    Let me know if is ok

    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: Facebook login redirect #48358
     Radu
    Moderator

    Hello,

    You need to go in your kleo-child directory then make a folder named, kleo-framework, then inside kleo-framework folder, create a folder named lib, here you need to unrar and upload this file ( see attachment )

    the path for the file must be like this : /wp-content/themes/kleo-child/kleo-framework/lib/function-facebook-login.php

    Cheers

    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: Administrator's approval of joining issue. #48344
     Radu
    Moderator

    Hello,

    Use this plugin : https://wordpress.org/plugins/bp-disable-activation-reloaded/

    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: Thin line above menu #48343
     Radu
    Moderator

    Try with css code.

    Is not full width because, the div navbar-collapese is not full width.

    COPY CODE
    
    .navbar-collapse {border-top: 1px solid #e5e5e5;}
    
    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: Header logo full size #48342
     Radu
    Moderator

    Hello,

    Try with CSS code.

    COPY CODE
    
    
    .navbar-collapse {border-top: 1px solid #e5e5e5;}
    
    
    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: media lightbox size issue #47999
     Radu
    Moderator

    Hello,

    Disable plugins that not come with the kleo theme one by one and check to see what happens.

    If you have disabled all plugins that not come with the kleo theme and nothing changed, update theme to latest version.
    If your issue is not resolved by solutions from above, post url with that problem.

    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: Child Theme #47997
     Radu
    Moderator

    Hello again,

    Your problem was caused by unclosed “A” tag, which was added in kleo-child/functions.php. I have fixed it for you and now is ok.

    Please make sure in the future that you disable any custom codes or plugins before posting a topic since the existing problem is not related to theme functionality.

    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: set Buddypress cover upload size limit to 1 MB #47996
     Radu
    Moderator

    Hello,

    The simplest way is to limit entire server upload_max_filesize=1MB . Otherwise you will have to hack the plugin files.

    Hope you understand

    Cheers

    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: issue with styling the bbpress forums page #47979
     Radu
    Moderator

    Hello,

    Try to disabling plugins that not come with the kleo.

    If that not resolving your issue, provide admin user and pass and FTP to take a look closer.

    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: Administrator's approval of joining issue. #47974
     Radu
    Moderator

    Hello,

    Read this : https://wordpress.org/support/topic/users-not-receiving-activation-email#post-2202538
    and https://buddypress.org/support/topic/help-activation-email-not-sent-nothing-works/

    If your problem is not resolved, you need to contact your hosting company and ask about this email issue.

    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: Blog issue to be corrected #47970
     Radu
    Moderator

    Hello,

    You have restricted that category from Memberships -> Memberships Levels -> Your levels

    You can unrestrict categories by navigating tp wp-admin -> Memberships -> Memberships Levels -> Your levels

    Select certains levels, scroll bottom, and uncheck the category what you want to be visible by all visitors. ( see screenshot )

    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: issue with styling the bbpress forums page #47968
     Radu
    Moderator

    Hello,

    Please provide URL with that issue.

    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: Child Theme #47967
     Radu
    Moderator

    Hello,

    In first column of footer, i see a A tag which in 2 and 3 columns A tag are not present,

    You have footer.php in your child-theme ?

    If you have please paste code here to take a look, or provide ftp details or admin user and pass.

    Cheers

    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: IE 11 shows mobile interface #47837
     Radu
    Moderator

    First step, copy your header.php from wp-content/themes/kleo/header.php to wp-content/themes/kleo-child/
    Second step, add the code from above immediately after tag open ( see screenshot )

    Let me know if you solve, if you cannot handle this, you can provide me FTP details and we will solve this.

    Cheers

    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 - 19,641 through 19,680 (of 20,101 total)

Log in with your credentials

Forgot your details?