Forum Replies Created
-
Author
-
RaduModerator
Hi,
Please add this snippet to your wp-content/themes/kleo-child/functions.php
COPY CODEif (!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 solutionRaduModeratorHi
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 solutionAttachments:
You must be logged in to view attached files.RaduModeratorHi,
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 solutionRaduModeratorHi,
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 CODEdefine( '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 solutionRaduModeratorHi,
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 CODEfunction 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 solutionRaduModeratorHi,
This function will disable the entire modal plugin, pop-up galleries,pop-up images and inclusive the popup login.
COPY CODEfunction 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 solutionRaduModeratorHi,
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 solutionRaduModeratorIf 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 codeHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionFebruary 29, 2016 at 20:57 in reply to: Want to have the same font size for the title of News Highlight, News Focus, and Kleo Posts Carousel. #107461RaduModeratorHi,
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 solutionRaduModeratorHi,
Add this code to wp-content/themes/kleo-child/functions.php
COPY CODEif (!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 solutionRaduModeratorHi,
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 solutionRaduModeratorUse this
COPY CODEif ( ! 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 solutionRaduModeratorHi,
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 solutionRaduModeratorHi,
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 solutionRaduModeratorHi
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 CODEadd_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 solutionRaduModeratorAdd this function to your wp-content/themes/kleo-child/functions.php
COPY CODEfunction 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 solutionRaduModeratorHi,
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 solutionRaduModeratorHi,
You can have different color to menu links by using this css
Ex for homepage
COPY CODEbody.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 CODEbody.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 solutionRaduModeratorHi,
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 solutionRaduModeratorHi,
I receive this when i try to upload slider direct from revolution slider
COPY CODEimporting 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 CODEdefine( '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 solutionRaduModeratorHi,
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 solutionFebruary 24, 2016 at 17:02 in reply to: Horizontal search form – Search button does not show text #106268RaduModeratorHi 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 CODEform#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 solutionFebruary 24, 2016 at 16:42 in reply to: None of the icons are showing / some buttons have displaying errors #106255RaduModeratorHi 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 CODEadd_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 solutionRaduModeratorHi,
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 solutionRaduModeratorHi,
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 solutionRaduModeratorAlso 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 solutionRaduModeratorMost probably i’ve misunderstood you,
This css will add more spacing to the minicart
COPY CODEli.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 solutionRaduModeratorAdd 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 solutionRaduModeratorHi,
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 solutionRaduModeratorPlease 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 solutionRaduModeratorHi,
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 solutionRaduModeratorHi,
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 solutionAttachments:
You must be logged in to view attached files.RaduModeratorAdd 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 solutionRaduModeratorHi,
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 solutionRaduModeratorHi,
Please add this function to wp-content/themes/kleo-child/functions.php
COPY CODEfunction 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 solutionRaduModeratorHi,
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 solutionFebruary 19, 2016 at 16:51 in reply to: how to hide the whole content for users, that are not logged in or registerd? #105064RaduModeratorHi,
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 solutionRaduModeratorHi,
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 solutionRaduModeratorHi,
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 solutionRaduModeratorYes 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 -
AuthorPosts