Forum Replies Created

Viewing 40 posts - 8,041 through 8,080 (of 20,101 total)
  • Author
  •  Radu
    Moderator

    Hi,

    You can do that using this function

    COPY CODE
    
    
    if ( ! function_exists( 'kleo_search_menu_item' ) ) {
        /**
         * Add search to menu
         *
         * @param string $items
         * @param object $args
         *
         * @return string
         */
        function kleo_search_menu_item( $items, $args ) {
            if ( sq_option( 'ajax_search', 1 ) == 'logged_in' && ! is_user_logged_in() ) {
                return $items;
            }
    
            $location = sq_option( 'menu_search_location', 'primary' );
    
            if ( $args->theme_location == 'top' ) {
                $form = kleo_get_search_menu_item();
                $items .= '<li id="nav-menu-item-search" class="menu-item kleo-search-nav">' . $form . '</li>';
            }
    
            return $items;
        }
    }
    

    And this CSS

    COPY CODE
    
    @media(max-width:991px){
        .top-menu  #ajax_search_container {padding:0 10px;}
    }
    

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

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

    NOTE : Child theme needs to be installed and activated.

    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: Translation not possible #153531
     Radu
    Moderator
    Not marked as solution
    in reply to: newsletter no fields appear #153396
     Radu
    Moderator

    If you still encounter the problem even with the default theme it means this has nothing to do with our theme and your problem it’s not caused by sweetdate 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: 2 side menus? #153395
     Radu
    Moderator

    Hi,

    By default this it’s not possible and we don’t have a quick solution for 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: KLEO login url security #153394
     Radu
    Moderator
    Not marked as solution
    in reply to: profile tab translation #153393
     Radu
    Moderator
    Not marked as solution
    in reply to: Gallery User Page #153389
     Radu
    Moderator

    Hi,

    KLEO doesn’t handle the user permissions for that

    Try to use the repair tool for bbpress from wp-admin -> tools -> forums -> repair forums

    Also, you can install this plugin: https://wordpress.org/plugins/user-role-editor/ and for the participant, role check only the desired option for that role.

    Before any operation from those make a database backup for any case.

    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: Image gallery caption #153387
     Radu
    Moderator

    I’ve replied there a few time ago

    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: Categories of other plugins does not show up at front-end #153386
     Radu
    Moderator

    Hi,

    Sorry for the late reply,

    Try to write your cat names in the marked fields

    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: Bugs and Issues with CSS #153385
     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
     Radu
    Moderator
    Not marked as solution
    in reply to: Problem with HomePage #153383
     Radu
    Moderator

    Hi,

    What are actually the theme problems here ? please be short

    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: Title AND Meta below featured image/video #153382
     Radu
    Moderator

    Hi,

    In theme options -> blog you will find a setting for that

    I don’t know what contains your content file..

    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: Wrong social media links #153381
     Radu
    Moderator

    Hi,

    sorry for the late reply,

    You should add http:// before www so the Instagram link should be : https://www.instagram.com/yourusername

    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: Styling the search form #153380
     Radu
    Moderator

    Hi,

    For the directory page use this CSS

    COPY CODE
    
    .page-id-7504 .kleo-search-form #searchform .input-lg {background-color:#07da00;color:#003300;}
    

    Using this code will stops to search to changes the opacity when it;s out of focus

    COPY CODE
    
    .kleo-search-form #searchform .input-lg {
        opacity: 1 !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: Enable Caption in Prettybox #153379
     Radu
    Moderator

    Hi,

    Sorry for the late reply,

    Yes, some things have been fixed why you don’t check? Using single image and masonry gallery will not open two PrettyPhoto pop-ups also the caption it’s displayed in pop-up

    Give a try

    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: Registrati form text #153378
     Radu
    Moderator

    Hi,

    If you really need to modify that you should have some PHP knowledges

    here is the responsible file: wp-content/plugins/k-elements/shortcodes/templates/kleo_register.php , you will need to rewrite that file by copy the file to wp-content/themes/kleo-child/k_elements to can have the functionality that you need over the theme update.

    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: Bug issue from Grid masonry columns rows setting #153377
     Radu
    Moderator

    Hi,

    I see that,

    Add this CSS

    COPY CODE
    
    
    @media(min-width:992px;){
    .responsive-cols.per-row-5 > * {width:19.9%;}
    }
    
    

    If this will behave the same use this instead

    COPY CODE
    
    
    @media(min-width:992px;){
    .responsive-cols.per-row-5 > * {width:19.8%;}
    }
    
    

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

    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
    in reply to: Translation #153376
     Radu
    Moderator

    Hi,

    Maybe yes, it’s possible to provide FTP login details to can test some solutions ?

    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 Error when using Modal Box #153375
     Radu
    Moderator

    Hi,

    This does not seem to be a theme problem and this can be caused by a plugin that you are using or by the child theme de-activate all plugins and child theme and test

    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,

    Please follow this ticket you should be able to figure out https://archived.seventhqueen.com/forums/topic/buddypress-sort-member-directory-alphabetical

    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,

    We don’t have a quick solution related to 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: Some KLEO shortcodes don’t work on pages #153372
     Radu
    Moderator

    Hi,

    the only cause for rendering shortcodes instead of to run those it’s the K-elements or the Visual composer plugin make sure to have those updated and activated, but if you already have done this, try to delete both plugins then go to wp-admin -> appearance -> install plugins -> and install again that plugins.

    Also you can try to de-activate the child theme and to purge all caches

    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
    Not marked as solution
     Radu
    Moderator

    Hi the title it’s visible

    Maybe you have solved meanwhile !?

    If not try to de-activate all plugins excepting visual composer and k-elements and also the child theme and chive a try but from what i see the title it’s there

    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: Blog title + author archive + blog post margins #153369
     Radu
    Moderator

    Hi,

    1.The single option for title position it’s under wp-admin -> theme options -> Layout Options -> page title location.

    2. You will have to paste the code from pastebin to wp-content/themes/kleo-child/functions.php

    http://pastebin.com/raw/c1q23JkE

    This will generate default wp author archive instead of buddypress profile.

    3. You will have to use a css like this

    COPY CODE
    
    .post-template-default.single .kleo-page .template-page {
        max-width: 800px !important;
        margin: 0 auto;
    }
    

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

    NOTE : Child theme needs to be installed and activated.
    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,

    For me it works, it’s a huge difference using those settings comparative with the default behaviour the header bg it’s applied after few pixels

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

    Hi,

    You can try this : https://seventhqueen.com/blog/code-snippets/the-definitive-wordpress-speed-guide-step-by-step-easy.html

    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: Translation not possible #153215
     Radu
    Moderator
    Not marked as solution
    in reply to: How to remove CDNJS.CLOUDFLARE.COM after import demo data #153214
     Radu
    Moderator

    I don’t know exactly the reason, maybe it was a problem with the email server

    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 Message pagination #153213
     Radu
    Moderator

    Hi,

    I will add this suggestion to improvement list and maybe in future PM’s will have pagination, if it’s a pain to scroll every time just delete the conversation …. and start a new one

    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: Scam messages #153212
     Radu
    Moderator
    Not marked as solution
    in reply to: Ajax search cant search profiles.. #153211
     Radu
    Moderator

    I see, but there is no problem the search doesn’t search for members, you should search for a plugin capable for 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: facebook API #153210
     Radu
    Moderator
    Not marked as solution
    in reply to: Help me! #153208
     Radu
    Moderator

    Hi,

    Sorry for the delayed response

    The login that you have provided cannot access the wp-admin dashboard, the account has admin role ?

    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: Users can’t login from iPhone #153072
     Radu
    Moderator

    I see
    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: Select from drop-down menu with keyboad #153071
     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: Change the color of icon in Kleo Tab #153070
     Radu
    Moderator

    Hi,

    I don’t have any quick solution for coloring icon the same as active color using CSS.

    For the font size use this .main-color .kleo-tabs .tabs-style-line > li.active > a {font-size:20px}

    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: Transparent drop down menu color #153069
     Radu
    Moderator

    Hi,

    Sorry for the delayed response, having some health issues…

    I recommend you to use our default menu + the CSS that I have provided to you and to ask for a refund from Ubermenu support service.
    If my solution works for your needs.

    Let me know
    Sorry for the situation
    Best Regards
    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,041 through 8,080 (of 20,101 total)

Log in with your credentials

Forgot your details?