Forum Replies Created

Viewing 40 posts - 11,161 through 11,200 (of 20,101 total)
  • Author
  • in reply to: k-elements kleo shortcode error – division by zero #133961
     Radu
    Moderator

    Great if it works!

    Good luck with your project and 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: uploading the theme #133960
     Radu
    Moderator
    Hi, Add this css to wp-admin -> theme options -> general settings -> quick css
    li.kleo-menu.kleo-user_avatar-nav.menu-item ul.pull-left {
        right: 0;
        left: auto;
    }
    
    Cheers R.
    in reply to: Help #133886
     Radu
    Moderator

    Hi,

    Use this CSS to control font size and font family only for the menu

    COPY CODE
    
    .primary-menu .navbar-nav>li>a {
        font-size: 17px;
        font-family: monospace;
    }
    

    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 copy that file in wp-content/themes/kleo-child/page-parts/

    And that’s all you should have child theme installed and activated

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Kleo Post Carouse Issue #133882
     Radu
    Moderator
    Done, please check now it was this option de-activated : Enable Custom Image sizes from wp-admin -> theme options -> blog Cheers R.
    in reply to: k-elements kleo shortcode error – division by zero #133880
     Radu
    Moderator

    Hi,

    Regarding that bug, just pay attention to the quotes from where you have copied that code, one quote are like that : ” and others like this ″ this because of wired encoding… so try to paste again the shortcode from here : http://pastebin.com/raw/gZqLWFD9 and you will see it;s ok

    The names of the icons without icon- are available only in that certain shortcode if you will use html code you should write with icon- prefix

    example :

    COPY CODE
    
    <i class="icon-umbrella"></i>
    

    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: Restrict my site #133879
     Radu
    Moderator

    Hi,

    If you are pleased with the support service please very much to leave a short review … few words about your experience with the support service.

    https://themeforest.net/item/kleo-next-level-wordpress-theme/reviews/6776630

    Thank you in advance

    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: Shortcodes – Documentation lacking #133878
     Radu
    Moderator

    I thought the VC it’s inactive because i saw this page : https://nooshtube.com/tabs-pills/ rendering all shortcodes not running it.

    In future we will improve our documentation

    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: Create new form #133877
     Radu
    Moderator

    hi,

    For the MailChimp problem provide admin credentials to check please.

    For renaming tabs you shoud add this code to your child theme functions.php

    COPY CODE
    
    define( 'BP_XPROFILE_SLUG', 'perfil' );
    define( 'BP_ACTIVITY_SLUG', 'actividad' );
    define( 'BP_FRIENDS_SLUG', 'contactos' );
    define( 'BP_GROUPS_SLUG', 'grupos' );
    define( 'BP_FORUMS_SLUG', 'foros' );
    define( 'BP_MESSAGES_SLUG', 'mensajes' );
    define( 'BP_NOTIFICATIONS_SLUG', 'notificaciones' );
    

    Maybe you will need to rename and other components, if not leave only tge first line

    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: Hide group update from Activity Stream #133874
     Radu
    Moderator
    Not marked as solution
    in reply to: Kleo Post Carouse Issue #133866
     Radu
    Moderator
    Not marked as solution
    in reply to: Visual Composer and WooCommerce (.container -issue) #133859
     Radu
    Moderator

    Hi,

    Can you please provide to us a page url from your site where we can see exact the described behaviour ?

    We need also the wp admin credentials.

    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: k-elements kleo shortcode error – division by zero #133858
     Radu
    Moderator

    Thank you for reporting this we will investigated and we will fix in next 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: Shortcodes – Documentation lacking #133857
     Radu
    Moderator

    Hi,

    For the moment I cannot see what you have built with VC on your website because I see that you have de-activate Visual Composer.

    Tell me what you need to achieve, you want a pulsing pin ? The documentation should be updated cuz meanwhile we have developed and implemented new features, tell me and i will help you.

    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: Login not working #133855
     Radu
    Moderator
    Not marked as solution
    in reply to: No Image on Facebook #133854
     Radu
    Moderator

    Hi,

    Try to install Yoast By SEO plugin and check again but made a test with an article that you haven’t shared yet on facebook because fb has 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: uploading the theme #133853
     Radu
    Moderator
    Not marked as solution
    in reply to: problems with tabs #133851
     Radu
    Moderator
    Not marked as solution
    in reply to: problems with tabs #133850
     Radu
    Moderator
    Not marked as solution
    in reply to: Request your help please team :) #133849
     Radu
    Moderator
    Not marked as solution
    in reply to: Restrict my site #133848
     Radu
    Moderator

    Hi,

    Add this function to

    COPY CODE
    
    
    function disable_sidemenu_on_groups_component($data, $option) {
    
        if (bp_is_groups_component() AND !is_user_logged_in() ) {
    
            if ($option = 'header_sidemenu') {
                $data = false;
            }
            return $data;
        }
    
    }
    add_filter('sq_option','disable_sidemenu_on_groups_component',10, 2 );
    
    

    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: How to set up the knowledge base #133839
     Radu
    Moderator

    Hi,

    Add this CSS to wp-admin -> appearance -> theme options -> quick css

    COPY CODE
    
    .col-xs-12:nth-child(3n+1) {
        clear: left;
    }
    

    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: Essential Grid questions #133838
     Radu
    Moderator

    Hi,

    This it means that it’s not a theme problem you should simply go to that grid settings and to limit the number of the posts …. with minus 1

    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 “MailGun for WordPress” plugin #133829
     Radu
    Moderator
    Not marked as solution
    in reply to: bbpress #133828
     Radu
    Moderator

    De-activate all plugins except BuddyPress and RE-SAVE permalinks and check again.

    Let me know, if it not works provide admin credentials but try that before

    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 layout for the members page #133827
     Radu
    Moderator

    Hi,

    In this directory, you will find the shortcodes from visual composer for BuddyPress : /wp-content/plugins/k-elements/shortcodes/templates/buddypress

    If you will modify one of them, I recommend you to put it in child theme in this location

    wp-content/themes/kleo-child/k_elements/

    You should have child theme 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: Refund #133816
     Radu
    Moderator
    Not marked as solution
    in reply to: Submit button on forums all the way to right #133815
     Radu
    Moderator

    Ok
    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: 0 COMMENTS at bottom of forums #133814
     Radu
    Moderator

    Hi,

    Use this css instead

    COPY CODE
    
    
    .forum #comments, .topic #comments {
        display: none !important;
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Submit button on forums all the way to right #133728
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options -> general options -> quick css

    COPY CODE
    
    
    .bbp-topic-form form .bbp-submit-wrapper {
        float: left !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: 0 COMMENTS at bottom of forums #133726
     Radu
    Moderator

    I’ve understood we will investigate this but until then use this temporary solution

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

    COPY CODE
    
    .page-id-30379 div#comments {
        display: none !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: Change layout for the members page #133722
     Radu
    Moderator

    Hi,

    Just create a new page and using visual composer click on BuddyPress tab and play with the elements from that section :

    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 layout for the members page #133721
     Radu
    Moderator

    Hi,

    Just create a new page and using visual composer click on BuddyPress tab and play with the elements from that section :

    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: menus in my page collapse in mobile view #133720
     Radu
    Moderator

    Hi,

    Provide an account to can take a closer look

    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: Submit button on forums all the way to right #133719
     Radu
    Moderator

    Hi,

    What submit button ? print screen please and direct link

    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 #133718
     Radu
    Moderator
    Not marked as solution
    in reply to: 0 COMMENTS at bottom of forums #133717
     Radu
    Moderator

    Hi

    Go to the wp-admin -> pages -> forums -> look for discussion and uncheck allow discutssion

    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,
    No one of that features is not included in our theme you should create that functionalities or you can search for some plugins, a plugin that you can test it to can block the user email domains it’s : https://wordpress.org/plugins/ban-hammer/

    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: Request your help please team :) #133715
     Radu
    Moderator
    Not marked as solution
Viewing 40 posts - 11,161 through 11,200 (of 20,101 total)

Log in with your credentials

Forgot your details?