Forum Replies Created

Viewing 40 posts - 19,721 through 19,760 (of 20,101 total)
  • Author
  • in reply to: MEMBER Function not available #47228
     Radu
    Moderator

    Technically yes, buy you need to have some knowledge in php.

    Search in theme files that function/functions and then implement in sweet.

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

    That strings belongs to buddypress, you need to translate buddypress,and then generate mo file. Then strings are translated…

    IF you want to change/translate menu nav titles use this functions, in your kleo-child functions.php

    COPY CODE
    
    function mb_profile_menu_tabs(){
        global $bp;
        
        $bp->bp_nav['messages']['name'] = 'Mail';
        $bp->bp_nav['friends']['name'] = 'Contacts';
        $bp->bp_nav['profile']['name'] = 'Account';
    }
    add_action('bp_setup_nav', 'mb_profile_menu_tabs', 201);
    
    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,

    1. For this you need to upgrade your plugin to rtMediaPro or search for some similar plugins.

    3. Try with this plugins : https://wordpress.org/plugins/bp-list-newest-members/ & https://wordpress.org/plugins/buddypress-featured-members/

    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 Videos not Sizing to Column #46900
     Radu
    Moderator

    Hello,

    On my side (Latest version of Chrome) videos are displayed correctly and they scaling to columns.

    On VC you can use rows and text blocks.

    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: Info under profile picture covered #46898
     Radu
    Moderator

    Post page url please.

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

    After plugin update process, all that plugin files included translations are rewritten, so you need to translate it again.

    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
    in reply to: Seperate Menus for Mobile #46893
     Radu
    Moderator

    Unfortunately this is not possible using default kleo and wp. You should consider finding a plugin for this or hiring a developer.

    This is not a quick solution to provide.

    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
    in reply to: How to clear white space under socket? #46892
     Radu
    Moderator

    Hello,

    You need to add below that image or below register form some space gaps.

    The white space appears when in the page is not enough content

    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: One of the products sold ONLY in one country (eBook) #46890
     Radu
    Moderator

    Hello,

    Try to search on google for this solution or ask on woocommerce support forum.

    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: CPU usage + Hostgator agonies #46888
     Radu
    Moderator

    Hello,

    You need to disable “Post Likes”

    Go to Theme Options -> Social Share -> Enable post likes* SET OFF

    This function causes all that admin-ajax requests.

    Also check this Theme Options -> Buddypress -> Live Notifications interval* set 60000 (60 seconds) or 120000 (120 seconds) depends of your server confuguration.

    I hope to solve this problem

    Cheers

    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: PMPro Level(s) Colour #46884
     Radu
    Moderator

    You can customize levels by targeting css clases like this

    COPY CODE
    
    .membership .kleo-level-1 {
    	background-color:red;
    }
    
    .membership .kleo-level-2 {
    	background-color:yellow;
    }
    
    .membership .kleo-level-3 {
    	background-color:green;
    }
    
    .membership .kleo-level-4 {
    	background-color:blue;
    }
    
    

    from here you can customize as you wish

    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: Background color of dropdown menu on mobile version #46880
     Radu
    Moderator

    I cannot acces your website (see attachment)

    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: CSS to change Main Menu Height? #46879
     Radu
    Moderator

    Hello,

    Add this code to you kleo child style.css

    COPY CODE
    
    body.page-id-816 div.kleo-main-header .navbar-collapse > ul > li > a {
        line-height: 40px !important;
    }
    body.page-id-816 div.navbar-header {
        height: 40px !important;
    }
    body.page-id-816 div.navbar-header > strong > a {
        line-height: 40px !important;
    }
    body.page-id-816 div.sticky-wrapper {
        height: 41px !important;
    }
    body.page-id-816 div#header.header-color {
        height: 42px !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: MEMBER Function not available #46872
     Radu
    Moderator

    Hello,

    Seems to be an error caused by latest version of RTMedia Plugin, and will try to fix ASAP, in the next update.

    Hope you understand

    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: Post Update #46841
     Radu
    Moderator

    You need to flush cache from w3…

    See screenshots

    Your css now : http://ucgym.771production.netdna-cdn.com/wp-content/themes/kleo-child/style.css?ver=2.4
    contains :

    COPY CODE
    
    /*
    Theme Name:     Kleo Child
    Theme URI:
    Description:    Child theme for Kleo
    Author:         SeventhQueen
    Author URI:     http://seventhqueen.com
    Template:       kleo
    Tags:  one-column, two-columns, right-sidebar, fluid-layout, custom-menu, featured-images, post-formats, sticky-post, translation-ready
    License: GNU General Public License
    License URI: license.txt
    */
    
    /*
    * Please add your custom styles below
    */
    
    
    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: Post Update #46795
     Radu
    Moderator

    That CSS from above is not loaded into your site.

    You have added that code to you kleo-child/style.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: MEMBER Function not available #46754
     Radu
    Moderator

    Have you solved this problem in the meanwhile ?

    I logged into your website with both accounts and only one menu appears.

    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: Post Update #46752
     Radu
    Moderator

    Add this css to your kleo-child style.css, it should work.

    COPY CODE
    
    @media (max-width: 400px) {
    #whats-new-post-in-box > label {
    display: none !important;
    }
    
    #whats-new-post-in {
        max-width: 175px !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: remove both sidebar borders on 3 column layout #46747
     Radu
    Moderator

    Use this

    COPY CODE
    
    .template-page {border:0;}
    
    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: Revolving clients #46738
     Radu
    Moderator

    Welcome,

    Yes, you need to find your preffered widget and add that code in array args.

    Hope you doing.

    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: Disable Portfolio #46734
     Radu
    Moderator

    You have reseted permalinks after you renamed the portfolio name and link ?

    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 gap under socket #46729
     Radu
    Moderator

    That little white space is caused by sweetCaptcha WordPress plugin.

    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: Localization troub #46728
     Radu
    Moderator

    In this case, translate only from kleo, and files that you copy to kleo-child translate them manualy if you encounter this problem. It should work without problems.

    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 both sidebar borders on 3 column layout #46727
     Radu
    Moderator

    Hello,
    Post url please.

    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: The requested URL /REGISTER/ was not found on this server. #46724
     Radu
    Moderator

    Hi,
    Provide 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: change color background hover submenu #46723
     Radu
    Moderator

    Hello,

    Give URL please

    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: Background color of dropdown menu on mobile version #46722
     Radu
    Moderator

    Hello,

    Provide URL please.

    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: MEMBER Function not available #46581
     Radu
    Moderator

    What version of IE do you have ?

    In my IE 10 and Firefox 35.0.1 Works perfect no double menu..

    Try to clear browser cache, what version of IE and FF do you have ?

    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: Clone airbnb #46580
     Radu
    Moderator

    I recommend you to not update woocommerce to latest version, kleo is not fully compatible yet, this week will be release a new update kleo that will be compatible with latest version of woocommerce.

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

    Go to PAGES -> Select Home and here can edit your text from homepage.

    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: unable to update k elements plugin #46578
     Radu
    Moderator

    Hello,

    In first instance you need t update your Kleo Theme to 2.4

    Then you need to update plugins

    Redownload pack from themeforest and upload theme files via ftp just as plugins.

    https://archived.seventhqueen.com/documentation/kleo#updates

    See Manual update by ftp.

    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: Clone airbnb #46573
     Radu
    Moderator

    Hello,

    Yes is possible, but you need to have some jquery/css skills to do something like that.

    Try to search for resources on the internet since there isn’t a plug and play 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: Kleo elements shortcodes missing from Visual composer #46567
     Radu
    Moderator

    Check K Elements Plugin, seems to be inactive.

    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: CSS to change Main Menu Height? #46561
     Radu
    Moderator

    Hello,

    You can adjust header size from Theme Options -> Header.

    But if you need only for homepage, please post url here, am i will look for a solution for you.

    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: MEMBER Function not available #46559
     Radu
    Moderator

    Hello,

    1. Search a plugin or something for this.

    2. Will be fixed in next update of theme

    3. You need to add this tag o first line after head

    COPY CODE
    
    <meta http-equiv="X-UA-Compatible" content="IE=9; IE=8; IE=7; IE=EDGE" />
    

    https://archived.seventhqueen.com/forums/topic/ie10-menu-problem-with-menu#post-44678

    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: Can't filter post by custom taxonomy #46555
     Radu
    Moderator

    Provide link with that problem please.

    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 Group page boxes don't display #46551
     Radu
    Moderator

    In what version of Kleo you encounter this problem ?

    If you don’t have latest version, update ti to 2.4

    Try to disable plugins one by one and check what plugin causes this 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: load more posts #46534
     Radu
    Moderator

    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: Remove "create an account" #46533
     Radu
    Moderator

    Hello,

    Go to Miscellaneous -> Admin toolbar ( Set Off )

    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: Post Update #46532
     Radu
    Moderator

    In this case, please provide url of this site, and create for me 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
Viewing 40 posts - 19,721 through 19,760 (of 20,101 total)

Log in with your credentials

Forgot your details?