Forum Replies Created

Viewing 40 posts - 2,201 through 2,240 (of 2,990 total)
  • Author
  • in reply to: Facebook Register Button only on homepage #108058
     Radu
    Moderator

    Hi,

    Please add this snippet to your wp-content/themes/kleo-child/functions.php

    COPY CODE
    
    
    if (!function_exists('kleo_fb_button_shortcode')) :
    	function kleo_fb_button_shortcode()
    	{
    		$output = '';
    		if ( sq_option( 'facebook_login', 0 ) == 1 && get_option( 'users_can_register' ) && !is_user_logged_in() ) {
    			$output .= '<a href="#" class="kleo-facebook-connect btn btn-default "><i class="icon-facebook"></i>   ' . __("Log in with Facebook", 'kleo_framework') . '</a>';
    		}
    		return $output;
    	}
    	add_shortcode('kleo_fb_button', 'kleo_fb_button_shortcode');
    endif;
    
    

    Then add in what page do you want homepage or any page this shortcode

    [kleo_fb_button]

    Of course this will be displayed only for logged out users.

    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: NEW and HOT in menu #108053
     Radu
    Moderator

    Hi

    Just go to wp-admin -> appearance -> menus -> Go to item that you want to label and inside the em tags type your text (see attached screenshot)

    COPY CODE
    <em>NEW</em>

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    Attachments:
    You must be logged in to view attached files.
    in reply to: Mobile Menu Not Working #108052
     Radu
    Moderator

    Hi,

    The issue is because the caret has same color as bg

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

    COPY CODE
    
    #header .navbar-nav li .caret:after {
        color: #444 !important;
    }
    

    Replace #444 with your desired color

    Let me know

    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: Paid Memberships Pro – can’t save settings #107794
     Radu
    Moderator

    Hi,

    Do you have added some function to your child theme ? or some php files ?

    Your wordpress is updated to latest version ?

    You plugins are updated ?

    Anyways add this go to wp-config.php and look for wp_debug and change from define( ‘WP_DEBUG’, false ); to define( ‘WP_DEBUG’, true ); also add this under the wp_debug true

    COPY CODE
    
    define( 'WP_DEBUG_LOG', true );
    

    https://codex.wordpress.org/Debugging_in_WordPress

    Look if any error appears on screen after you enable the wp_debug, the WP_DEBUG_LOG will store all errors into debug.log in /wp-content/

    Let me know

    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: Import Demo error #107774
     Radu
    Moderator

    Hi,

    There is a fix for wordpress to allow russian characters on username, if you will check to create a new user with russian you will cannot do that cuz the wordpress it not allow, please test the function and let me know

    COPY CODE
    
    
    function kleo_translate_special_chars($str){
        $tr = array(
            "А"=>"a", "Б"=>"b", "В"=>"v", "Г"=>"g", "Д"=>"d",
            "Е"=>"e", "Ё"=>"yo", "Ж"=>"zh", "З"=>"z", "И"=>"i",
            "Й"=>"j", "К"=>"k", "Л"=>"l", "М"=>"m", "Н"=>"n",
            "О"=>"o", "П"=>"p", "Р"=>"r", "С"=>"s", "Т"=>"t",
            "У"=>"u", "Ф"=>"f", "Х"=>"kh", "Ц"=>"ts", "Ч"=>"ch",
            "Ш"=>"sh", "Щ"=>"sch", "Ъ"=>"", "Ы"=>"y", "Ь"=>"",
            "Э"=>"e", "Ю"=>"yu", "Я"=>"ya", "а"=>"a", "б"=>"b",
            "в"=>"v", "г"=>"g", "д"=>"d", "е"=>"e", "ё"=>"yo",
            "ж"=>"zh", "з"=>"z", "и"=>"i", "й"=>"j", "к"=>"k",
            "л"=>"l", "м"=>"m", "н"=>"n", "о"=>"o", "п"=>"p",
            "р"=>"r", "с"=>"s", "т"=>"t", "у"=>"u", "ф"=>"f",
            "х"=>"kh", "ц"=>"ts", "ч"=>"ch", "ш"=>"sh", "щ"=>"sch",
            "ъ"=>"", "ы"=>"y", "ь"=>"", "э"=>"e", "ю"=>"yu",
            "я"=>"ya", " "=>"-", "."=>"", ","=>"", "/"=>"-",
            ":"=>"", ";"=>"","—"=>"", "–"=>"-"
        );
        return strtr($str, $tr);
    }
    
    function kleo_extra_validate_username($valid, $username){
        if( !$valid ){
            $sanitized = sanitize_user( $username, true );
            $valid = ( ! empty( $sanitized ) );
        }
        return $valid;
    }
    add_filter('validate_username', 'kleo_extra_validate_username', 10, 2);
    
    
    function kleo_extra_sanitize_user($user, $raw_user, $strict) {
        $user = kleo_translate_special_chars($raw_user);
        return $user;
    }
    add_filter('sanitize_user', 'kleo_extra_sanitize_user', 10, 3);
    
    

    Regarding to

    What is your suggestions about memory limits? What droplet you can advice on Digital Ocean for me for this theme? with WPML and around 200 users?

    Install wp query monitor and see how memory it uses on the page load and multiply with 200, but i think you will not have 200 simultaneously, do an approximate calculation.

    After you have increased the memory you was able to edit the VC blocks ? Let me know

    Regarding to icons, icons can be previewed in package that you have downloaded from themeforest in Assets/Fontello/demo.html

    Regarding to this

    Also i want to add opportunity for user to add new posts, with full functionality from word press as media, and visual composer. But i want to do this only for specific users category. Do you have any suggestions?

    If social doesn’t satisfy your needs : https://wordpress.org/plugins/social-articles/ you will need to find a similar plugin.

    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: Scrolling #107671
     Radu
    Moderator

    Hi,

    This function will disable the entire modal plugin, pop-up galleries,pop-up images and inclusive the popup login.

    COPY CODE
    
    
    function disable_imgs_modal() {
    
        $output = '';
        $output .='<script type="text/javascript">
            jQuery(document).ready(function ($) {var magnificPopupEnabled = false;$.extend(true, $.magnificPopup.defaults, {disableOn: function() {return false;}});});
        </script>';
        echo $output;
       
    }
    add_action ('wp_print_footer_scripts', 'disable_imgs_modal');
    
    

    Let me know

    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: Large logo #107659
     Radu
    Moderator

    Hi,

    Please add this css

    COPY CODE
    
    #header .container {
        max-width: 1440px;
    }
    

    Let me know

    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: Mailchimp form #107591
     Radu
    Moderator

    If you need to change the Signup button background color go to wp-admin -> theme options -> general settings -> quick css and replace from here

    COPY CODE
    
    .mc4wp-form-fields .form-submit {
        background: #333!important;
    }
    

    333
    with your color code

    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 controlling the news ticker font size use this piece off CSS

    COPY CODE
    
    .caroufredsel_wrapper .news-ticker article a {
        font-size: 0.8em !important;
    }
    
    

    News focus widget

    COPY CODE
    
    
    .news-focus article a {
        font-size: 1.2em !important;
    }
    
    

    Kleo Post Carousel

    COPY CODE
    
    .kleo-carousel-container ul.kleo-carousel li article a {
        font-size: 11px !important;
    }
    

    Let me know if is ok

    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: How to Change The “leave a Replay” Label #107411
     Radu
    Moderator

    Hi,

    Add this code to wp-content/themes/kleo-child/functions.php

    COPY CODE
    
    if (!function_exists('kleo_comment_form')) :
    
        function kleo_comment_form( $args = array(), $post_id = null ) {
    
                $comments_args = array(
                    'title_reply'          => __( 'Leave a comment', 'kleo_framework' ),
                    'title_reply_to'       => __( 'Leave a comment to %s', 'kleo_framework' ),
                    );
    
                comment_form($comments_args);
        }
    
    endif;
    

    Let me know

    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: Add overlay over background image. #107394
     Radu
    Moderator

    Hi,

    I’ve checked your error.log file from the server and there is an fatal error

    COPY CODE
    
    [29-Feb-2016 14:45:09 UTC] PHP Fatal error:  Allowed memory size of 176160768 bytes exhausted
    

    I’ve tried to increase it via wp-config.php but it seems that the changes not apply, please contact your hosting and ask them to increase the php memory to 256 M

    Let me know

    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: Post Views counter #107382
     Radu
    Moderator

    Use this

    COPY CODE
    
    
    if ( ! function_exists( 'kleo_entry_meta' ) ) :
        /**
         * Prints HTML with meta information for current post: categories, tags, permalink, author, and date.
         * Create your own kleo_entry_meta() to override in a child theme.
         * @since 1.0
         */
        function kleo_entry_meta( $echo = true, $att = array() ) {
    
            global $kleo_config;
            $meta_list = array();
            $author_links = '';
            $meta_elements =  sq_option( 'blog_meta_elements', $kleo_config['blog_meta_defaults'] );
    
            // Translators: used between list items, there is a space after the comma.
            if ( in_array( 'categories', $meta_elements ) ) {
                $categories_list = get_the_category_list(__(', ', 'kleo_framework'));
            }
    
            // Translators: used between list items, there is a space after the comma.
            if ( in_array('tags', $meta_elements ) ) {
                $tag_list = get_the_tag_list('', __(', ', 'kleo_framework'));
            }
    
            $date = sprintf( '<a href="%1$s" rel="bookmark" class="post-time">' .
                '<time class="entry-date" datetime="%2$s">%3$s</time>' .
                '<time class="modify-date hide hidden updated" datetime="%4$s">%5$s</time>' .
                '</a>',
                esc_url( get_permalink() ),
                esc_attr( get_the_date( 'c' ) ),
                esc_html( get_the_date() ),
                esc_html( get_the_modified_date( 'c' ) ),
                esc_html( get_the_modified_date() )
            );
    
    
    
            if ( is_array( $meta_elements ) && !empty( $meta_elements ) ) {
    
    
                if ( in_array( 'author_link', $meta_elements ) || in_array( 'avatar', $meta_elements ) ) {
    
                    /* If buddypress is active then create a link to Buddypress profile instead */
                    if (function_exists( 'bp_is_active' ) ) {
                        $author_link = esc_url( bp_core_get_userlink( get_the_author_meta( 'ID' ), $no_anchor = false, $just_link = true ) );
                        $author_title = esc_attr( sprintf( __( 'View %s\'s profile', 'kleo_framework' ), get_the_author() ) );
                    } else {
                        $author_link = esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) );
                        $author_title = esc_attr( sprintf( __( 'View all POSTS by %s', 'kleo_framework' ), get_the_author() ) );
                    }
    
                    $author = sprintf( '<a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s %4$s</a>',
                        $author_link,
                        $author_title,
                        in_array( 'avatar', $meta_elements ) ? get_avatar( get_the_author_meta( 'ID' ), 50) : '',
                        in_array( 'author_link', $meta_elements ) ? '<span class="author-name">' . get_the_author() . '</span>' : ''
                    );
    
                    $meta_list[] = '<small class="meta-author author vcard">' . $author . '</small>';
                }
    
                if ( function_exists( 'bp_is_active' ) ) {
                    if ( in_array( 'profile', $meta_elements ) ) {
                        $author_links .= '<a href="' . bp_core_get_userlink( get_the_author_meta( 'ID' ), $no_anchor = false, $just_link = true ) . '">' .
                            '<i class="icon-user-1 hover-tip" ' .
                            'data-original-title="' . esc_attr(sprintf(__('View profile', 'kleo_framework'), get_the_author())) . '"' .
                            'data-toggle="tooltip"' .
                            'data-placement="top"></i>' .
                            '</a>';
                    }
    
                    if ( bp_is_active( 'messages' ) ) {
                        if ( in_array( 'message', $meta_elements ) ) {
                            $author_links .= '<a href="' . wp_nonce_url( bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?r=' . bp_core_get_username( get_the_author_meta( 'ID' ) ) ) . '">' .
                                '<i class="icon-mail hover-tip" ' .
                                'data-original-title="' . esc_attr(sprintf(__('Contact %s', 'kleo_framework'), get_the_author())) . '" ' .
                                'data-toggle="tooltip" ' .
                                'data-placement="top"></i>' .
                                '</a>';
                        }
                    }
                }
    
                if ( in_array( 'archive', $meta_elements ) ) {
                    $author_links .= '<a href="' . esc_url(get_author_posts_url(get_the_author_meta('ID'))) . '">' .
                        '<i class="icon-docs hover-tip" ' .
                        'data-original-title="' . esc_attr(sprintf(__('View all posts by %s', 'kleo_framework'), get_the_author())) . '" ' .
                        'data-toggle="tooltip" ' .
                        'data-placement="top"></i>' .
                        '</a>';
                }
    
            }
    
            if ( $author_links != '' ) {
                $meta_list[] = '<small class="meta-links">' . $author_links . '</small>';
            }
    
            if (in_array( 'date', $meta_elements ) ) {
                $meta_list[] = '<small>' . $date . '</small>';
            }
    
            $cat_tag = array();
    
            if ( isset( $categories_list ) && $categories_list ) {
                $cat_tag[] = $categories_list;
            }
    
            if ( isset( $tag_list ) && $tag_list ) {
                $cat_tag[] = $tag_list;
            }
            if (!empty($cat_tag)) {
                $meta_list[] = '<small class="meta-category">'.implode(", ",$cat_tag).'</small>';
            }
    
            //comments
            if ((!isset($att['comments']) || (isset($att['comments']) && $att['comments'] !== false)) && in_array( 'comments', $meta_elements )) {
                $meta_list[] = '<small class="meta-comment-count"><a href="'. get_permalink().'#comments">'.get_comments_number() .
                    ' <i class="icon-chat-1 hover-tip" ' .
                    'data-original-title="'.sprintf( _n( 'This article has one comment', 'This article has %1$s comments', get_comments_number(), 'kleo_framework' ),number_format_i18n( get_comments_number() ) ).'" ' .
                    'data-toggle="tooltip" ' .
                    'data-placement="top"></i>' .
                    '</a></small>';
    
            }
    
            $meta_list[] = '<small class="post-views">' . do_shortcode('[post-views]') . '</small>';
    
            $meta_separator = isset( $att['separator'] ) ? $att['separator'] : sq_option( 'blog_meta_sep', ', ') ;
    
            if ( $echo ) {
                echo implode( $meta_separator, $meta_list );
            }
            else {
                return implode( $meta_separator, $meta_list );
            }
    
        }
    endif;
    
    
    

    Add this snippet to wp-content/themes/kleo-child/functions.php

    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: Sticky menu mobile padding #107354
     Radu
    Moderator

    Hi,

    Please add this css to wp-admin -> theme options -> general settings -> quick css or in wp-content/themes/kleo-child/style.css

    COPY CODE
    
    
    @media (max-width: 990px) {
        div#header {
            margin-bottom: 45px !important;
    }}
    
    
    

    Let me know

    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: Large logo #106904
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    #header .kleo-main-header .container {
        padding: 0;
        margin: 0;
    }
    

    And regarding the menu height you can adjust the height from wp-admin -> theme options -> header options -> Main Menu Height*

    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: How can register Japanese Font? #106881
     Radu
    Moderator

    Hi

    You need to add your css font file to head with the function below, replace http://linktomyfont.com/font.css with http://yourdomain.com/wp-content/themes/kleo/assets/Font/yourfontcssfile.css

    COPY CODE
    
    add_action('wp_head','Kleo_hook_font');
     
    function Kleo_hook_font() {
     
    $output="<link rel='stylesheet' href='http://linktomyfont.com/font.css' type='text/css' media='all' />";
     
    	echo $output;
    }
    

    Then in quick css area you will add a css like this

    h1,h2,h3,h4,h5,h5 { font-family: ‘ar_berkleyregular’; }

    Replace ar_berkleyregular with your font family

    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: Password Reset UI – Password Fields Not Showing #106870
     Radu
    Moderator

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

    COPY CODE
    
    function show_pass_input(){
        echo "<style>\n";
        echo '
    
        .resetpassform p.user-pass2-wrap {
        	display: block !important;
    	}
    
        ';
        echo "\n</style>";
    }
    add_action( 'admin_print_styles', 'show_pass_input' ,90);
    

    Let me know

    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: Import Demo error #106620
     Radu
    Moderator

    Hi,

    Regarding to this

    But I cant understand how you did that, the same menu but with less sub items show for non logged users, and for logged users it shows as avatar + sub menu account items. I cant repeat it… How to add parent menu item which will shows only for non logged users, and hide it for already logged?

    – This is the logic for the menu my account items, if you want to restinct some links for only logged users you can do it with this plugin : https://wordpress.org/plugins/nav-menu-roles/

    1. This is not possible,you can use live notifications instead.

    2. Yes, you need to create a new page with visual composer in that you will place a row and from that row you will choose your background then you will need to add Galaxy Particles visual element in that row

    3. You should install this plugin : https://wordpress.org/plugins/buddypress-multilingual/

    4. I don’t understand the question

    5. The fb login works by default, can you try to login with an fb account that the name is without chirilic characters ? let me know

    6. Yes

    7. If you choose to use transparent menu for sitewide, it should be to disable breadcrumbs and Main menu info* by ereaseing content from there

    8.Yes indeed, we will check this and we will fix this until then please add this rule to your wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    .navbar .dropdown-menu li a {
        font-size: 14px !important;
    }
    

    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: Menu link color #106340
     Radu
    Moderator

    Hi,

    You can have different color to menu links by using this css

    Ex for homepage

    COPY CODE
    
    body.home .kleo-main-header .nav > li > a {
        color: red !important;
    }
    

    Ex for page with id 49 ( http://brueckeberlin.de/fotos/ ) you will have to add this css

    COPY CODE
    
    body.page-id-49 .kleo-main-header .nav > li > a {
        color: green !important;
    }
    

    And so on.. , you will need to replace the color and the id for your pages.

    That’s all

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

    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: Post layout issue oninner page #106330
     Radu
    Moderator

    Hi,

    The issue comes from an css rule that is added to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    
    .main-title {padding-top: 200px;}
    
    .main-title {padding-bottom: 200px;}
    
    

    Remove these rules and it will be fine

    Let me know

    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: Home OnePage – KLEO demo (v3) #106299
     Radu
    Moderator

    Hi,

    I receive this when i try to upload slider direct from revolution slider

    COPY CODE
    
    importing slider settings and data...
    
    Notice: Use of undefined constant FS_CHMOD_DIR - assumed 'FS_CHMOD_DIR' in /opt/bitnami/apps/wordpress/htdocs/wp-admin/includes/file.php on line 664
    
    Notice: Constant FS_METHOD already defined in /opt/bitnami/apps/wordpress/htdocs/wp-content/plugins/revslider/includes/slider.class.php on line 1050
    
    Notice: Use of undefined constant FS_CHMOD_DIR - assumed 'FS_CHMOD_DIR' in /opt/bitnami/apps/wordpress/htdocs/wp-admin/includes/file.php on line 664
    
    Notice: Use of undefined constant FS_CHMOD_DIR - assumed 'FS_CHMOD_DIR' in /opt/bitnami/apps/wordpress/htdocs/wp-admin/includes/file.php on line 664
    
    Notice: Use of undefined constant FS_CHMOD_DIR - assumed 'FS_CHMOD_DIR' in /opt/bitnami/apps/wordpress/htdocs/wp-admin/includes/file.php on line 664
    
    Notice: Undefined index: sliderID in /opt/bitnami/apps/wordpress/htdocs/wp-content/plugins/revslider/admin/revslider-admin.class.php on line 590
    Error: Não foi possível criar o diretório.
    Go Back
    
    

    Please add this to wp-config.php

    COPY CODE
    
    
    define( 'FS_METHOD', 'direct' );
    define( 'FS_CHMOD_DIR', 0777 );
    define( 'FS_CHMOD_FILE', 0777 );
    
    

    Let me know after you paste this into wp-config.php

    You can try also to import from wp-admin -> appearance -> kleo demo data -> scroll down to the last item and click import

    LEt me know

    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: Video Comments #106281
     Radu
    Moderator

    Hi,

    You can hide the TEXT COMMENT text with this css

    COPY CODE
    
    .comment-navigation a#comments-text-link {
        display: none;
    }
    

    And then you can look in that plugin dashboard if it have some option to set VIDEO COMMENT to be the default option.

    Cheers

    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 again,

    In the file that i have provided to you i’ve added only the missing search text not any other modifications.

    Add this css to your child theme style.css

    COPY CODE
    
    
    form#horizontal_search {
        padding: 0px 30px;
    }
    
    

    Let me know if is ok.

    Cheers

    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 Jazzbuzz,

    This issue is caused because wp because kleo and geo my wp uses same font awesome icons library and you should stop the geo my wp to load that.

    By adding this filter to child theme functions.php geo my wp will stop the icons library to load

    COPY CODE
    
    add_filter( 'gmw_font_awesome_enabled', '__return_false' );
    

    Same issue discuted here : https://archived.seventhqueen.com/forums/topic/geo-my-wp-icon-bug

    Let me know

    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: Social Icons Do Not Display On Mobile #106228
     Radu
    Moderator

    Hi,

    I see, can you please install child-theme ? and then you should paste this css into wp-content/themes/sweetdate-child/style.css

    COPY CODE
    
    .top-links .hide-for-small {
        text-align: center;
        display: inherit !important;
    }
    

    Before installing child theme you should save settings from theme options pannel by doing this

    Go to wp-admin -> theme options -> import/export -> show export text ( copy this content into a text file and save it to your desktop ) then activate child theme and go again to theme options -> import/export -> import from text (here you will need to paste the content that you have save it on desktop ).

    Let me know

    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: Social Icons Do Not Display On Mobile #106015
     Radu
    Moderator

    Hi,

    Please add this css to wp-admin -> theme options -> styling options -> quick css

    COPY CODE
    
    .top-links li.hide-for-small {
        text-align: center;
        display: block !important;
    }
    

    Let me know

    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: Cart widget not placed correctly #105994
     Radu
    Moderator

    Also add this rule

    COPY CODE
    
    .kleo-main-header .nav > li.kleo-toggle-menu a { padding-bottom:10px !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: Cart widget not placed correctly #105992
     Radu
    Moderator

    Most probably i’ve misunderstood you,

    This css will add more spacing to the minicart

    COPY CODE
    
    li.shop-drop ul.kleo-toggle-submenu { top: 30px !important; }
    

    Add your desired spacing and let me know

    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: Logo keeps resizing to wrong (smaller) size #105965
     Radu
    Moderator

    Add this

    COPY CODE
    
    
    @media (max-width:700px) {
    .top-bar{
        display: none !important; 
    }}
    
    

    Let me know if is ok

    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: Cart widget not placed correctly #105908
     Radu
    Moderator

    Hi,

    This issue is specific to you but please apply this css into wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    .kleo-toggle-menu .kleo-toggle-submenu:before {
        border-top: 1px solid #ddd !important;
        border-left: 1px solid #ddd !important;
    }
    
    .kleo-toggle-menu .kleo-toggle-submenu { border:1px solid #ddd !important; }
    

    It will evidentiate the mini cart container and arrow, after you paste the css make sure that you will purge/clear entire cache

    Let me know

    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: Logo keeps resizing to wrong (smaller) size #105789
     Radu
    Moderator

    Please wait for the 4.0 Update we will release it tomorrow and it will contain a patch for the logo logic and also for the VC.

    Until then please use this css to can show the logo ok

    COPY CODE
    
    .kleo-main-header img#logo_img {
        max-height: 109px !important;
    }
    
    

    Regarding the top social bar on mobile please use this

    COPY CODE
    
    
    @media (max-width:700px) {
    .top-bar, .top-bar #top-social {
        display: inline-flex;
        width: auto !important;
    }}
    
    

    After you update the css file clear the cache.

    Let me know

    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: Cart widget not placed correctly #105760
     Radu
    Moderator

    Hi,

    Please add this css to your css file

    COPY CODE
    
    .kleo-toggle-menu .kleo-toggle-submenu:before {
        border-top: 1px solid #111 !important;
        border-left: 1px solid #111 !important;
    }
    

    Replace #111 with your desired colors

    Let me know

    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: Logo keeps resizing to wrong (smaller) size #105744
     Radu
    Moderator

    Hi,

    Please let me know how do you need to fit the logo, a sketch will be helpful but see the attached image, in that way you need to fit the logo on mobile ?

    If yes i’ve used this css

    COPY CODE
    
    
    @media(max-width:720px) {
    .navbar-header .logo {
        max-width: 75%;
        display: inline-block !important;
        top: 25px;
        height:100% !important;
    }}
    
    

    Let me know

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    Attachments:
    You must be logged in to view attached files.
    in reply to: Widget Menu Caret::after #105180
     Radu
    Moderator

    Add this

    COPY CODE
    
    .widget_nav_menu .current-menu-ancestor ul {display:block ;}
    

    Let me know

    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: Animate Numbers with comma #105143
     Radu
    Moderator

    Hi,

    If you need commas inside the kleo total member that is not possible, but if you want to have the total members number increasing and then 0000 from example you can use this

    COPY CODE
    
    [kleo_animate_numbers animation="animate-when-visible" timer="3000"][kleo_total_members][/kleo_animate_numbers],000
    
    

    Let me know

    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: Optimal Image Sizes for Blog Posts #105126
     Radu
    Moderator

    Hi,

    Please add this function to wp-content/themes/kleo-child/functions.php

    COPY CODE
    
    function KleoCustomImagesSizes () {
         global $ kleo_config;
         // Post image sizes for carousels and galleries
         $ Kleo_config [ 'post_gallery_img_width'] = 555;
         $ Kleo_config [ 'post_gallery_img_height'] = 333;
    }
    add_action ('after_setup_theme', 'KleoCustomImagesSizes');
    

    Replace 555 and 333 with your desired image dimentions

    Let me know

    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: custumize icon #105124
     Radu
    Moderator

    Hi,

    That is not possible, but you can create a new row in that you will have to put 3 columns and then you can build your desired layout using your preferred images.

    Please look at this example

    COPY CODE
    
    [vc_row][vc_column width="1/3"][vc_single_image image="7834" img_size="medium" alignment="center"][vc_custom_heading letter_spacing=""][vc_column_text letter_spacing=""]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width="1/3"][vc_single_image image="7834" img_size="medium" alignment="center"][vc_custom_heading letter_spacing=""][vc_column_text letter_spacing=""]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width="1/3"][vc_single_image image="7834" img_size="medium" alignment="center"][vc_custom_heading letter_spacing=""][vc_column_text letter_spacing=""]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row]
    

    Paste the code into a test page from text area not visual then switch to backend visual composer and place an example image in each image element, this is an alternative for the featured items.

    Cheers

    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,

    Today or tomorrow a new version of kleo will be released and you will be allow to generate a login form or register form with shortcode

    COPY CODE
    
    [kleo_login show="login|lostpass" login_title="Log in with your credentials" lostpass_title="Forgot your details?" login_link="#|url" lostpass_link="#|url" register_url="hide|url"]
    

    Also this feature will be present as visual element in visual composer after you will update your Theme, K-elements and Visual composer.

    Let me know

    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: Five columns in one row #105057
     Radu
    Moderator

    Hi,

    The best option is to set background-size:cover and background-position: center right; then add this css to your site

    COPY CODE
    
    @media(max-width:720px) {
    .container>.navbar-header{
        line-height: 160px !important;
        height:150px !important;
    }
    }
    

    I’ve tested with this values and it looks good from my point of view.

    Let me know

    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: Five columns in one row #105015
     Radu
    Moderator

    Hi,

    Please add this css

    COPY CODE
    
    
    .home_box_wrap .col-sm-2 {
        display: initial !important;
    }
    

    Let me know if is ok like this.

    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: Five columns in one row #104813
     Radu
    Moderator

    Yes it’s ok with that classes

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

    And this class should be added to latest column (the empty col) home_box_last not at 5th column.

    COPY CODE
    
    .home_box_wrap .col-sm-2 {
        width: 20% !important;
    }
    

    Let me know

    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 - 2,201 through 2,240 (of 2,990 total)

Log in with your credentials

Forgot your details?