Forum Replies Created

Viewing 40 posts - 8,801 through 8,840 (of 20,101 total)
  • Author
  • in reply to: Buddypress Cover Photo Not Saving #146780
     Radu
    Moderator

    Hi,

    So, that means that something from child theme PHP file or a function located in wp-content/themes/kleo-child/functions.php can cause this, for those should be made some investigations to can figure out what causes this.

    You can try to comment the add_action or add_filter one by one functions having Kleo child theme activated and repeating the cover photo action to see what causes that

    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: Installation service #146778
     Radu
    Moderator
    Not marked as solution
    in reply to: CENTERED MENU #146776
     Radu
    Moderator

    Hi,

    The changes should be reflected instantly if you don’t have a cache plugin and if you have cache just clear/empty all caches and the changes should been seen, are you referring to the logo ? Anyway changes should be seen immediately

    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 can i force the translation? #146774
     Radu
    Moderator

    You can add more string like those : Marital Status, City, Relationship, are added from wp-admin -> users -> profile fields.

    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: Menu Icon Display – Desktop versus Mobile #146773
     Radu
    Moderator

    Yes, it look like as it should like on my locall install

    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: Messaging Feature Not Working Correctly #146772
     Radu
    Moderator

    Hi,

    I see that comment problem that disappears, please de-activate all plugins to see if something causes this if this still continues,de-activate child theme and, re-upload the parent theme files over the existing one, try to update all un-updated plugins.

    This feature works in default kleo theme.

    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: Some chat rooms for groups #146770
     Radu
    Moderator

    When amount of people will vote this, we will start to think and implement this.
    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: Demo import not complete #146769
     Radu
    Moderator
    Not marked as solution
    in reply to: Revolution Slider #146768
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    .tp-caption a {
        pointer-events: all !important;
        z-index: 9999999;
        cursor: pointer;
    }
    
    .tp-caption a:hover {
        cursor:pointer;
    }
    

    Then re-add your links, it works I’ve tested, also you will have to purge all caches after any slider cache

    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: button icons instead of text labels #146767
     Radu
    Moderator

    I see, for that isn’t a specific option, if you want to add there icons instead of text link you will have to edit this template file : /wp-content/themes/kleo/buddypress/activity/entry.php but you will have to copy this file to child theme to can have those modifications even you update the theme, so first copy this file : /wp-content/themes/kleo/buddypress/activity/entry.php to /wp-content/themes/kleo-child/buddypress/activity/entry.php

    Then take a look at this screenshot

    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: Exclude Category from KLEO Ajax Search #146587
     Radu
    Moderator

    Hi,

    Add this function to wp-content/themes/buddyapp-child/functions.php

    COPY CODE
    
    
    function sq7_altering_ajax_search($defaults){
    
        $defaults['cat'] = '-20';
    
    }
    apply_filters( 'kleo_ajax_query_args', 'sq7_altering_ajax_search');
    

    20 represents category ID and minus sign represents remove.

    Full documentation to WP Query args
    https://codex.wordpress.org/Class_Reference/WP_Query#Category_Parameters

    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: Revolution Slider #146585
     Radu
    Moderator

    Hi,

    From what I see only the first slide doesn’t have the link… if some links are missing re-add them.

    Kleo cannot delete the Revolution slider links from slider.

    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: change filter categories #146584
     Radu
    Moderator
    Not marked as solution
    in reply to: Geo Directory Map and Page Title #146583
     Radu
    Moderator
    Not marked as solution
    in reply to: Member Directory… Search Form #146581
     Radu
    Moderator

    They are different elements, or what are you referring to align to right ? or what ? Set flaot right for element 1

    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: BuddyPress Activity Plus and other issues #146580
     Radu
    Moderator
    Not marked as solution
    in reply to: Block other user and Chat #146579
     Radu
    Moderator
    Not marked as solution
    in reply to: How I can see… #146578
     Radu
    Moderator

    Great then

    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: Content Aware Sidebars does not work #146575
     Radu
    Moderator

    Hi again,

    Remove all codes recording the sidebars from this topic and use those

    COPY CODE
    
    function register_sidebar_activity()
    {
        register_sidebar(array(
            'name' => 'Profile Widget',
            'id' => 'profilewidget',
            'before_widget' => '<div id="%1$s" class="widgets clearfix %2$s">',
            'after_widget' => '</div>',
            'before_title' => '<h5>',
            'after_title' => '</h5>',
        ));
    
    }
    
    add_action('wp_loaded', 'register_sidebar_activity');
    

    Then you will have to upload this file sidebar.php into child theme

    Explanations :

    This should be enough to understand how it works, i think we can close this ticket because solution it’s provided

    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: RTL Support Bugs!!! #146574
     Radu
    Moderator

    We should release a new update next week including this fix

    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: Mobile Menu / Lateral Menu #146572
     Radu
    Moderator

    Ok then

    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 can i force the translation? #146571
     Radu
    Moderator

    I don’t understand what you want to add , and what do you mean by ” How I can add new Works in Source?”

    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: Blog > Full Text: Restrict image size #146567
     Radu
    Moderator

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

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

    You’re welcome

    Have a nice weekend and good luck with the project

    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 4.7 #146459
     Radu
    Moderator

    From what i see and feel it works better, i haven’t noticed any problem

    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: WooCommerce product-category pages: Add content #146458
     Radu
    Moderator

    No problem

    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: Profile Dropdown toggle not working #146457
     Radu
    Moderator
    Not marked as solution
    in reply to: Logo broken iPhone6 #146456
     Radu
    Moderator

    Hi,

    Try again with those

    COPY CODE
    
    /* Iphone 6 */
    @media screen and (min-width: 400px) and (max-width: 480px) {
    .logo img {
        height: auto;
        max-width: 310px !important;
    }
    }
    
    /* Iphone 5 */
    @media screen and (min-width: 310px) and (max-width: 400px) {
    .logo img {
        height: auto;
        max-width: 225px !important;
    }
    }
    

    Play with max width value for iphone 5 and 6, adapt it for your needs..

    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: Best way to customize styles? #146455
     Radu
    Moderator

    Hi,

    I saw that the CSS from themes/kleo-child/style.css it loads thru the site if some rules not applying use !important for those.

    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: Mobile Menu / Lateral Menu #146454
     Radu
    Moderator

    Hi,

    Where I can see that live ? Leave here in a private reply admin credentials

    Please put a screenshot with the settings that you made in theme options
    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: Buddypress Cover Photo Not Saving #146453
     Radu
    Moderator

    Hi,

    If the photo upload works when you de-activate child theme it means that some PHP code of some file from the theme can cause that.

    I recommend you to have wp_debug and wp_debug_log enabled when you do this action, in this way we can see if there appears any error.

    Steps to enable wp debug:

    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( 'WP_DEBUG_LOG', true );
    

    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

    Repeat the described actions and then check the debug.log file and let me know what error appears.

    If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.

    After you have disabled the plugins try to see if the error persists.

    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: BuddyPress Activity Plus and other issues #146452
     Radu
    Moderator
    Not marked as solution
    in reply to: How to Show Thumbnail on Recent Post Widget #146451
     Radu
    Moderator

    Ok then

    No problem

    Have a nice week

    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: Geo Directory Map and Page Title #146450
     Radu
    Moderator
    Not marked as solution
    in reply to: Website going into fatal infinite loop. #146449
     Radu
    Moderator

    Hi,

    That shouldn’t cause that but anyways I’ve modified something regarding to that.

    Please replace content of this file : /wp-content/themes/kleo/lib/theme-functions.php
    with this one

    http://pastebin.com/raw/dsQMtHvD

    Let me know if this change will solve that.

    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: Profile Dropdown toggle not working #146445
     Radu
    Moderator
    Not marked as solution
    in reply to: Website Not Changing #146444
     Radu
    Moderator
    Not marked as solution
    in reply to: Content Aware Sidebars does not work #146443
     Radu
    Moderator

    Give a try

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

    Ok then

    You can have padding for all your pages exliding home with something like this :

    CSS that will control only home. it haves .home class before

    COPY CODE
    
    .home #geodir-sidebar, #geodir-sidebar-left, #geodir-sidebar-right, #geodir-wrapper-content {padding-top: 0 !important;}
    

    //this will be applied sitewite.

    COPY CODE
    
    #geodir-sidebar, #geodir-sidebar-left, #geodir-sidebar-right, #geodir-wrapper-content {padding-top: 0;}
    

    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 - 8,801 through 8,840 (of 20,101 total)

Log in with your credentials

Forgot your details?