Forum Replies Created

Viewing 40 posts - 5,681 through 5,720 (of 20,101 total)
  • Author
  • in reply to: Some layout help required #171431
     Radu
    Moderator

    Hi,

    My personal advice for your case it’s to set the required fields that you want to be mandatory competed for the search and then to install this plugin : https://wordpress.org/plugins/bp-force-profile/

    This will redirect and lock the members to complete all required fields!

    So in this way all search fields will be completed and searchable!

    You can add a field description with an additional note that will be disapled on register and also on profile edit

    For the search icon you want to have it inline ?

    There is no space available since there are 6 columns, an easy way it’s to hide the “who are my matches” text.

    The css for the levels page it’s next

    COPY CODE
    
    .membership ul.pricing-table.kleo-level-15 {
        max-width: 500px !important;
        margin: 0 auto;
        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: buddypress membersmasonry online status NOT hidden #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
     Radu
    Moderator

    Hi,

    Ok then
    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: API Facebook #171428
     Radu
    Moderator

    Hi,

    There it’s an issue with the app permission, you should allow Client OAuth login which it’s app settings related.

    FIX: https://stackoverflow.com/a/23709749/7974488

    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: KLEO Client #171427
     Radu
    Moderator

    Hi,
    You’re welcome
    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: Sort Posts by LIKES #171425
     Radu
    Moderator

    Hi,

    I will take your suggestion and I will add it to our improvement list when we do something we will let you 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

    Hi,

    That’s odd since that doesn’t happen on mine, I’ve tried multiple times I can make a video if you want.., can you try with all plugins deactivated? to see if the issue continue to occur ?

    The hover issue on notifications and cart fixed

    I’ve added the next function to functions.php child theme

    COPY CODE
    
    function sqr_fix_hover_22082017() {
    	
    	echo '
    <style>
    .open .kleo-toggle-submenu { display:block !important; }
    </style>
    	';
    
    }
    add_action('wp_footer', 'sqr_fix_hover_22082017');
    

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

    Hi,

    Still i’m not able to login with provided details, i’ve tried to use usernamd and also the password

    I need those to can see how the page refreshes when you post or fav something.

    The RSS button/link can be hidden with some CSS.

    Allowing users to create own charts and also personal dashboard page i don’t think it’s possible without cusotm development or specific plugin (if exists), since the dashboard page it’s a page builded with Visual Composer and it’s a static page.

    I’ve tried to search and to recommend you a plugin but this it’s what i found: https://wordpress.org/plugins/client-dash/ but i don’t think it can help you in your case, but take a look.

    Best Regards
    Radu

    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,

    Great!
    Have a nice day

    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: Search not showing results #171421
     Radu
    Moderator

    Hi,

    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: Change the menu style on mobile #171420
     Radu
    Moderator

    Hi,

    For the moment only the CSS can be provided, that it’s manipulated by JS when there isn’t enough space… in future, we will take into consideration allowing the ability to allow users to turn on/off that feature.

    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: Color Problem with latest update #171418
     Radu
    Moderator
    Not marked as solution
    in reply to: rtMedia in activity streams & notifications #171417
     Radu
    Moderator

    Hi,

    No problem,

    Add also this CSS to fix duplicating the compatibility circle

    COPY CODE
    
    body.buddypress div#profile .five.columns:first-child .circular-item {
        display: none;
    }
    body.buddypress div#profile .five.columns:first-child .circular-item:first-child {
        display: block;
    }
    

    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: private messages issues #171415
     Radu
    Moderator
    Not marked as solution
    in reply to: Showing whole post rather than excerpts #171414
     Radu
    Moderator
    Not marked as solution
    in reply to: HOW TO ADD SEARCH PRODUCTS IN MOBILE MENU #171410
     Radu
    Moderator

    Hi,

    There is no specific setting to change that, cuz adding it at the top when you search and the results are displayed will overlap and will push the menu items.

    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: Theme conflict with Woocommerce #171408
     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
    in reply to: Theme conflict with Woocommerce #171407
     Radu
    Moderator

    Hi,

    Yes, it’s update proof! you can update without any problem.

    Just add this css to fix the overlapping

    COPY CODE
    
    div#customer_details {
        display: inline;
    }
    
    div#order_review {
        display: inline-block;
    }
    

    If you are happy and you recommend our products and customer support service just leave us a review + 5* on the themeforest page if you want : https://themeforest.net/item/kleo-pro-community-focused-multipurpose-buddypress-theme/reviews/6776630

    Best Regards
    Radu

    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 get amp version for my buddyapp theme? #171304
     Radu
    Moderator

    Hi,

    So the plugin works with the theme but crashes when enabling plugins?

    Try to enable plugins one by one until you find the plugin that causes that.

    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: Global search for multisite with ajax search #171303
     Radu
    Moderator

    Hi,

    There is no quick solution to acheive that or known solution .

    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: Membership Level and Forum Role #171300
     Radu
    Moderator

    Hi,

    Try copy and paste the new snippet from pastebin : https://pastebin.com/raw/tpC24J2d

    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,

    Just I’ve de-activated all plugins at once, and the change works, I’ve changed the body font from play to open sans, the changes reflected on the site only if I’ve deactivated all plugins and the changes was shown.

    So you will have to deactivate all plugins then enable one by one until you find the problematic plugin.

    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: Sensei lessons becomin article #171291
     Radu
    Moderator

    Hi,

    That’s ODD, our theme will not change post types to post…. so I don’t think technology can be caused by our theme, pay attention to the plugins maybe one of those can cause that.

    I recommend you to ask for a backup from hosting company where you had all lessons, and then to deactivate the plugins that you are not using, or all plugins to test in this continue to happen, I recommend you to do this on a staging server cuz it may require some time until you identify the problematic cause or plugin.

    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: Youtube video via Visual Composer not going fullscreen #171289
     Radu
    Moderator

    Hi,

    I’ve found!!!

    That it’s caused by the animation

    Just set disable on animations for the video.

    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: Sort Posts by LIKES #171287
     Radu
    Moderator

    Hi,

    Ah I see,

    The snippet just arranges the posts that are displayed on the blog page.. but this will not work if you want to sort a loop by likes and another one by something else.

    For the moment there is no quick solution to add the sort option by likes in the visual composer posts element.

    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: Problems after update to 4.2.9 #171286
     Radu
    Moderator

    Hi,

    For the second issue, make sure to have a cover photo added already

    For me it works using latest theme version.

    Let me know, if still not works, reinstall the theme and check gain, also if you have child theme try to set off only to test if it’s caused by the child.

    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: Total blog items and “Load More” button #171285
     Radu
    Moderator

    Hi,

    In first instance I recommend you to install the next plugin to see what causes the high load on your site

    Also, you can install P3 Profiler plugin to can see what plugin causes huge load while accessing the link https://wordpress.org/plugins/p3-profiler/

    1. Try with this snippet

    COPY CODE
    
    function my_custom_query_filter( $query_string ) {
    $query_string .= '&per_page=30';
    return $query_string;
    }
    add_filter( 'bp_dtheme_ajax_querystring', 'my_custom_query_filter' );
    

    2.There is no quick solution for that.

    Also, make sure to have latest theme update installed.

    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: After update Visual Composer isn’t working #171284
     Radu
    Moderator
    Not marked as solution
    in reply to: Update brake Icon hover #171281
     Radu
    Moderator

    Hi,

    I cannot see on demo or on your website that words to hover those, also if I hover cart icon it works, can you please be more specific? ( screenshot + url )

    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: Specific Search Fields #171280
     Radu
    Moderator
    Not marked as solution
    in reply to: API Facebook #171279
     Radu
    Moderator

    Hi,

    From what I see the website displays a maintenance page, so I cannot test the login pop-up behavior.

    Can you please provide admin credentials to test? I will de-activate the maintenance page and then login with facebook

    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: Migration error #171278
     Radu
    Moderator
    Not marked as solution
    in reply to: Demo Import #171277
     Radu
    Moderator

    Hi,

    I’ve noticed that demo demo text and logo had been changed, that can be done in wp-admin -> pages- > login page.

    For the activity issue I’ve tried to log in to see how that it’s happening and the credentials not working, did you have solved or not?

    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: Top bar menu issue #171276
     Radu
    Moderator

    Hi,

    There is no specific setting to can turn off that, but you can modify the theme file app.js

    File location : /wp-content/themes/kleo/assets/js/app.js

    After you do that, just enable development mode from wp-admin ->theme options -> miscellaneous ->

    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: Kleo #171275
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    The Google index takes few days to be completed updated so you can force google to read again the new content, see here: https://support.google.com/webmasters/answer/6066468?hl=en

    also in your webmaster console, you are able to re-feetch and index your new pages.

    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: Membership Levels Not Distinguished #171272
     Radu
    Moderator

    Hi,

    Just create a new pmpro package with 0 price

    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 make the product tabs to be horizontal #171271
     Radu
    Moderator

    Sorry the correct path for the child it’s : wp-content/themes/kleo-child/woocommerce/single-product/tabs/

    I’ve forgotten /woocommerce/ folder in my previous comment, sorry. i will edit the reply also.

    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,

    The theme settings from parent and child are separated, example : if you have child theme activated and you have made your theme adjustments using the child theme, when you activate the parent theme the theme options remains in child theme to can have that in both variants you should import from child theme to parent theme the theme settings that can be imported/exported from wp-admin -> theme options -> import/export.

    So, settings from child to parent and vice-versa are separated, you will have to import the theme settings from one to another.

    Save the customizations for later use and also for backup.

    To solve your problem with the dropdown use the next CSS

    COPY CODE
    
    .open .kleo-toggle-submenu {
        display: block;
    }
    

    Anyway, i notice that this issue doesn’t happen on our demo.

    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: Company demo diagonal header issue. #171269
     Radu
    Moderator
    Not marked as solution
Viewing 40 posts - 5,681 through 5,720 (of 20,101 total)

Log in with your credentials

Forgot your details?