Forum Replies Created
-
Author
-
January 14, 2015 at 13:06 in reply to: How Do I Update SweetDate Without Overwriting My Customizations? #42006RaduModerator
Hello,
Go to Theme Options -> Import/Export -> then click -> Show export text and save that data in a text file for later use. ( import after theme update )
If you have made changes in php/css theme files, you need to save that files and re-upload after you update the theme.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 12, 2015 at 17:39 in reply to: Where does the "brief description of the product" appear in the front end? #41773RaduModeratorHello,
This field it was used for showing short description of the product in category, but kleo not using description in wocommerce category.
You can hide that filed by follwing steps from screenshots.
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.RaduModeratorHello,
Paste this code in your kleo-child theme functions.php
COPY CODE/*************************************************** :: MAINTENANCE MODE ***************************************************/ if (!function_exists('kleo_maintenance_mode')) { function kleo_maintenance_mode() { $logo_path = apply_filters('kleo_logo', sq_option_url('logo')); $logo_img = '<img src="'. $logo_path .'" alt="maintenance" />'; if (sq_option('maintenance_mode', 0) == 1) { if ( !is_user_logged_in() ) { wp_die( $logo_img . '<div style="text-align:center">' . sq_option('maintenance_msg', '') . '</div>', get_bloginfo( 'name' ) ); } } } add_action('get_header', 'kleo_maintenance_mode'); }
Logged in users can bypass the maintenance mode.
Let me know if is ok.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello
To make that, navigate to : Theme Options -> General Settings -> Quick CSS and add this code :
COPY CODE.form-search, .form-header, div.alert-box, div.pagination span.current { background-color:#111 !important; } .form-footer { color: #777777; padding: 20px 20px 10px; border-left: 10px solid rgba(31, 168, 209, 0.3); border-bottom: 10px solid rgba(31, 168, 209, 0.3); border-right: 10px solid rgba(31, 168, 209, 0.3); background: #111 !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
Paste this code to Theme Options -> General Settings -> Quick CSS
COPY CODEsection.container-wrap.main-color div.section-container.container { max-width:1440px }
Or add you preferred width. (1440 is max)
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 12, 2015 at 16:15 in reply to: How to make mobile header fixed and transparent just like desktop header in demo #41760RaduModeratorHello,
Add this code to Theme Optrions -> General Options -> Quick CSS
COPY CODE@media (max-width: 991px) { .kleo-main-header.header-normal { height:45px !important;} navbar-fixed.navbar-transparent #header { position: fixed !important;} strong.logo { line-height: 45px !important;} .kleo-mobile-icons { display: inline-block; float: right; margin-top: -23px; } .kleo-mobile-switch { margin-top: -20px !important; } .kleo-main-header.header-normal { position: fixed !important; background-color: rgba(0,0,0,0); } .kleo-navbar-fixed.navbar-transparent .kleo-main-header { background-color: rgba(0,0,0,0.9); } .navbar { height:0 !important; min-height:0 !important; } #main-container.container-full {margin-top:45px !important; } .navbar-header { min-height:45px !important; height:45px !important;padding: 0 15px !important} .kleo-mobile-switch,.kleo-mobile-icons { max-height: 35px !important;} .kleo-main-header.header-normal .navbar-collapse { padding-right: 0; background-color: rgba(0,0,0,0.9); padding: 0 !important; margin-right: auto; margin-left: auto; width: 100%; } #header .sticky-wrapper .container {padding: 0 !important;} }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
To fix this, just paste this code to Theme Options -> General Settings -> Quick CSS
COPY CODE.logo, .logo a {height: auto;}
Let me know if it works for you.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorDelete the css abve fom Quick CSS, and paste this
COPY CODE#login { width: auto; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorGo to Theme Options -> Styling Options -> scroll down at bottom at Quick CSS section and paste this code
COPY CODE.reveal-modal .button.facebook { height: 37px !important; font-size: 14px !important; padding: 10px 7px 11px !important; display: table !important; margin: 0 auto !important; width: 100% !important; margin-top: 10px !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
Unfortunately theme SweetDate has not a PageBuilder.
Sorry for the inconvenience
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
Please provide a url.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
Please send an email to themesupport@seventhqueen.com with details about your customization.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
Make sure you have followed this steps.
https://archived.seventhqueen.com/documentation/kleo#updates
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
Please provide a link.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
Users volume depends by server hardware and configuration,
More info here : http://codex.wordpress.org/High_Traffic_Tips_For_WordPress
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
If you don’t have last version of KLEO, update it to last version.
Let me know if it works.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
Wordpress SEO by YOAST is fully compatible with Kleo theme.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
Add this code to you kleo child functions.php
COPY CODEfunction kleo_social_share() { return ''; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
Put this code in your kleo-child functions.php
COPY CODEif ( ! function_exists( 'archive_sidebar' ) ) { // Register Sidebar function archive_sidebar() { $args = array( 'id' => 'archive-sidebar', 'name' => __( 'Archive sidebar', 'kleo_framework' ), ); register_sidebar( $args ); } // Hook into the 'widgets_init' action add_action( 'widgets_init', 'archive_sidebar' ); } function add_before_my_siderbar() { ?> <?php if (is_archive()) { ?> <div class="sidebar sidebar-main col-sm-3 sidebar-right"> <div class="inner-content widgets-container"> <?php dynamic_sidebar('archive-sidebar'); ?> </div><!--end inner-content--> </div><!--end sidebar--> <?php } ?> <?php } add_action( 'get_sidebar', 'add_before_my_siderbar' );
Let me know if it works.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
Go to wp-content\plugins\simple-author-box\core\sabox_author_box.php open in editor , select all and paste this code
COPY CODE<?php // If this file is called directly, busted! if( !defined( 'ABSPATH' ) ) { exit; } /*---------------------------------------------------------------------------------------------------------- Adding the author box to the end of your single post -----------------------------------------------------------------------------------------------------------*/ if( !function_exists( 'wpsabox_author_box' ) ) { function wpsabox_author_box( $saboxmeta = null ) { if ( is_single() or is_author() or is_archive() ) { global $post; global $options; $author_id = $post->post_author; if( isset( $options['sab_colored'] ) ) { $sabox_color = 'sabox-colored'; } else { $sabox_color = ''; } if( isset( $options['sab_web_position'] ) ) { $sab_web_align = 'sab-web-position'; } else { $sab_web_align = ''; } if( isset( $options['sab_web_target'] ) ) { $sab_web_target = '_blank'; } else { $sab_web_target = '_self'; } if( isset( $options['sab_web_rel'] ) ) { $sab_web_rel = 'rel="nofollow"'; } else { $sab_web_rel = ''; } if( get_the_author_meta( 'description' ) != '' || !isset( $options['sab_no_description'] ) ) { // hide the author box if no description is provided $saboxmeta .= '<div class="saboxplugin-wrap">'; // start saboxplugin-wrap div // author box gravatar $saboxmeta .= '<div class="saboxplugin-gravatar">'; $saboxmeta .= get_avatar( get_the_author_meta( 'user_email', $author_id ), '100' ); $saboxmeta .= '</div>'; $original = get_author_posts_url( $author_id ); $userprofile = str_replace("author/","", $original); // author box name $saboxmeta .= '<div class="saboxplugin-authorname">'; $saboxmeta .= '<a href="' .$userprofile . '">' . get_the_author_meta( 'display_name', $author_id ) . '</a>'; $saboxmeta .= '</div>'; // author box description $saboxmeta .= '<div class="saboxplugin-desc">'; $saboxmeta .= '<div class="vcard author"><span class="fn">'; $saboxmeta .= get_the_author_meta( 'description', $author_id ); $saboxmeta .= '</span></div>'; $saboxmeta .= '</div>'; if ( is_single() ) { if( get_the_author_meta( 'user_url' ) != '' and isset( $options['sab_web'] ) ) { // author website on single $saboxmeta .= '<div class="saboxplugin-web '. $sab_web_align .'">'; $saboxmeta .= '<a href="' . get_the_author_meta( 'user_url', $author_id ) . '" target="' . $sab_web_target . '">' . get_the_author_meta( 'user_url', $author_id ) . '</a>'; $saboxmeta .= '</div>'; } } if ( is_author() or is_archive() ) { if( get_the_author_meta( 'user_url' ) != '' ) { // force show author website on author.php or archive.php $saboxmeta .= '<div class="saboxplugin-web '. $sab_web_align .'">'; $saboxmeta .= '<a href="' . get_the_author_meta( 'user_url', $author_id ) . '" target="' . $sab_web_target . '">' . get_the_author_meta( 'user_url', $author_id ) . '</a>'; $saboxmeta .= '</div>'; } } // author box clearfix $saboxmeta .= '<div class="clearfix"></div>'; // author box social icons if( !isset( $options['sab_hide_socials'] ) ) { // hide social icons div option $saboxmeta .= '<div class="saboxplugin-socials ' . $sabox_color . '">'; foreach ( Sabox_Social_Icons::$sabox_social_icons_array as $sabox_social_id => $sabox_social_name ) { $sabox_author_fields = get_the_author_meta( $sabox_social_id ); if ( !empty( $sabox_author_fields ) ) { $saboxmeta .= Sabox_Social_Icons::get_sabox_social_icon( $sabox_author_fields, $sabox_social_id ); } } $saboxmeta .= '</div>'; } // end of social icons $saboxmeta .= '</div>'; // end of saboxplugin-wrap div } } return $saboxmeta; } } function saboxplugin_position() { global $options; if( !isset( $options['sab_autoinsert'] ) ) { add_filter ( 'the_content', 'wpsabox_author_box', 0 ); } } echo saboxplugin_position();
let me know if it works
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
Sorry for misunderstanding,
Go to edit your page and paste your slider shortcode in (Header Content – Optional) like in screenshot.
Let me know if is ok.
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.RaduModeratorHello,
Go to http://www.inhouserecruitment.co.uk/wp-admin/nav-menus.php ,then follow instructions from screenshots below.
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.January 6, 2015 at 15:51 in reply to: How to disable labels ("free", "new", etc.) on product listing page #41103RaduModeratorAdd this to Theme Options -> General Settings -> Quick css
COPY CODE.woocommerce span.percentage-badge { display: none; } .woocommerce ul.products li.product .free-badge { display:none; } .woocommerce span.free-badge, .woocommerce-page span.free-badge { display:none; }
Let me know if it works.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 6, 2015 at 12:47 in reply to: How to disable labels ("free", "new", etc.) on product listing page #41091RaduModeratorProvide a url please.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorI don’t know what causes the problem. But if you encounter this problem you need to access : http://www.greenapplab.com/wp-admin/options-permalink.php then “Enregistrer les modifications”
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
Problem solved,
You should save pemalinks again.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorPut this code in Theme Options -> General Settings -> Quick CSS
COPY CODE.small-listing article { border-bottom: 1px solid #efefef; text-align: left; }
Let me know if it works.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorYou’re welcome,
The original theme is designed with that “light color” see here : http://seventhqueen.com/themes/kleo/contact/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorAdd this code to Theme Options -> General Settings -> Quick CSS
COPY CODE.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="password"] {color:#000 !important;} .wpcf7 textarea {color:#000 !important;}
Let me know if it works.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorPlease provide URL.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
The contact form requires the Contact Form 7 Plugin.
You need to install them.
https://wordpress.org/plugins/contact-form-7/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
Create a file named content.php in your kleo-child folder
and paste this
COPY CODE<?php /** * The default template for displaying content * * Used for both single and index/archive/search. * * @package WordPress * @subpackage Kleo * @since Kleo 1.0 */ ?> <?php $postclass = ''; if( is_single() && get_cfield('centered_text') == 1) { $postclass = 'text-center'; } ?> <!-- Begin Article --> <article id="post-<?php the_ID(); ?>" <?php post_class(array($postclass)); ?>> <?php if (! is_single() ) : ?> <h2 class="article-title entry-title"> <a>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'kleo_framework' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a> </h2> <?php endif; //! is_single() ?> <?php if ( kleo_postmedia_enabled() && kleo_get_post_thumbnail() != '' ) : ?> <div class="article-media"> <?php echo kleo_get_post_thumbnail( null, 'kleo-full-width' );?> </div><!--end article-media--> <?php endif; ?> <div class="article-content"> <?php if ( ! is_single() ) : // Only display Excerpts for Search ?> <?php echo kleo_excerpt( 50 ); ?> <?php if ( get_the_excerpt() ): ?> <p><a>"><?php _e("Continue reading", 'kleo_framework');?></a></p> <?php endif; ?> <?php else : ?> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'kleo_framework' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'kleo_framework' ), 'after' => '</div>' ) ); ?> <?php endif; ?> <?php if( kleo_postmeta_enabled() ): ?> <div class="article-meta"> <span class="post-meta"> <?php kleo_entry_meta();?> </span> <?php edit_post_link( __( 'Edit', 'kleo_framework' ), '<span class="edit-link">', '</span>' ); ?> </div><!--end article-meta--> <?php endif;?> </div><!--end article-content--> </article><!--end article--> <style> .single .container .with-meta .article-content, .posts-listing.standard-listing.with-meta .article-content { margin-left: 0; padding: 0 0 40px; } article .article-meta { float: none; text-align: center; margin: 0 auto !important;} </style>
This applies only to standard formats of posts.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
Add this code to Theme Options -> General Settings -> Quick CSS
COPY CODEul.responsive-tabs { margin: 0 auto !important; display: table; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
Here its a shortcode example
[kleo_button title="Kleo Portfolio Android APP" href="http://MyCustomLinkForButtonAPP.com" target="_self" style="highlight" size="lg" type="app" title_alt="Get My App" icon="android" tooltip_position="left" tooltip_action="hover"]
If you do not deal with that, tell me and I’ll post screenshots.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
Paste this in your Kleo-Child theme functions.php
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()) { $meta_list = array(); // Translators: used between list items, there is a space after the comma. $categories_list = get_the_category_list( __( ', ', 'kleo_framework' ) ); // Translators: used between list items, there is a space after the comma. $tag_list = get_the_tag_list( '', __( ', ', 'kleo_framework' ) ); $date = sprintf( '<a href="%1$s" title="%2$s" rel="bookmark">' . '<time class="entry-date" datetime="%3$s">%4$s</time>' . '<time class="modify-date hide hidden updated" datetime="%5$s">%6$s</time>' . '</a>', esc_url( get_permalink() ), esc_attr( get_the_title() ), esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_html( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); $author = sprintf( '<a href="%1$s" title="%2$s" rel="author">%3$s</a>', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_attr( sprintf( __( 'View all posts by %s', 'kleo_framework' ), get_the_author() ) ), get_the_author() ); $meta_list[] = '<small class="meta-author author vcard">'.$author.'</small>'; $meta_list[] = '<small>'.$date.'</small>'; $cat_tag = array(); if ( $categories_list ) { $cat_tag[] = $categories_list; } if ($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)) { $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>'; } if ($echo) { echo implode(" ", $meta_list); } else { return implode(" ", $meta_list); } } endif;
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorTry to ad to your button a class named center see screenshot below
Then go to Theme Options -> General Settings -> Quick CSS and paste this :
COPY CODEa.center { margin: 0 auto !important; vertical-align: middle; display: table; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorYes is posible,
You need to create a slider like this from Revolution Slider -> Create new Slider ( see screenshow below )
After this, you need to create a page with FullWidth Template like in screenshot.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorTry to check at Settings > Advanced. At Valid OAuth redirect URIs, make sure you have a correct domain or let it be empty (not recommeneded)
Hope it works.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorPlease provide url with that problem.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHello,
You have not correctly configured application facebook
Go here https://developers.facebook.com/apps find your app and make sure you have completed like this. ( See screenshot )
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. -
AuthorPosts