Forum Replies Created

Viewing 40 posts - 2,641 through 2,680 (of 2,990 total)
  • Author
  • in reply to: Share this buttons #78761
     Radu
    Moderator
    This reply has been set as private.
    in reply to: Remove members recent activity from profile cover. #78717
     Radu
    Moderator

    Hi,

    Hide profile status update under avatar

    COPY CODE
    
    #item-header-content #latest-update {
        display: none;
    }
    

    Increase font size on groups

    COPY CODE
    
    .buddypress div#item-header div#item-header-content #latest-update, .buddypress div#item-header div#item-header-content p:first-child {
        font-size:1.2em;
    }
    

    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: CRITICAL!! Entire Site andAll WP Admin Access Down #78409
     Radu
    Moderator

    Hi,

    I’ve tried to reproduce all that scenarios but i don’t receive any errors,

    In few cases that error from theme panel when you try to save settings is caused by php memory limit

    So, try to increase php memory limit to 256 or 512

    COPY CODE
    
    /** Memory Limit */
    define('WP_MEMORY_LIMIT', '512M');
    

    https://wordpress.org/support/topic/error-increase-memory-limit-to-64-mb

    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 remove all the font awesome icons in Nav #78408
     Radu
    Moderator

    Hi,

    If you are talking about buddypress subnav profile icons add this css

    COPY CODE
    
    #buddypress div#item-nav ul a:before {display:none !important;}
    
    #buddypress div#item-nav ul li a span {
        position: absolute;
        top: 2px;
        left: 28%;
        z-index: 12;
    }
    

    Regards

    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: Transparent Menu Visual Composer #78405
     Radu
    Moderator

    Hi,

    You have right

    I’ve made some tests and i will provide a temporary solution untlil next update when we include this fix on the theme.

    Please add this css snippet to Wp-admin -> Theme options -> General settings -> Quick css

    COPY CODE
    
    body.navbar-transparent:not(.kleo-navbar-fixed) #header {
        position: absolute;
        width: 100%;
    }
    

    Sorry for inconvenience

    Best Regards

    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: Notification drop down spacing #78389
     Radu
    Moderator

    Hi,

    Use this CSS by adding this CSS to Wp-Admin -> Theme Options -> General Settings -> Quick CSS

    COPY CODE
    
    ul.submenu-inner.has-notif li {padding:2px 10px !important;}
    

    Let me know if is ok

    Best Regards

    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: disable side menu on home page #78202
     Radu
    Moderator

    Hi,

    Use this shortcode

    COPY CODE
    
    [kleo_search_form context="members,groups,post,page,forum,product,portfolio"]
    

    This shortcode will allows you to search on members,groups,post,page,forum,product,portfolio.

    Best Regards

    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: Search button textless #78042
     Radu
    Moderator

    Sure,

    COPY CODE
    
    https://swingrs.nl/wp-content/themes/sweetdate/assets/styles/font-awesome.min.css?ver=20150630
    

    Yesterday i added on your header.php before head tag closes the resource from seventhqeen.com

    Delete that line and then copy the header.php from sweetdate to sweetdate-child

    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: Business directory #78002
     Radu
    Moderator

    Hi,

    I really don’t figure out what’s the problem but you can patch like this : Add the below function to kleo-child/functions.php

    COPY CODE
    
    function patch_geodirectory-navigation_panel_css(){
        echo "<style>\n";
        echo '.chosen-container-multi .chosen-choices { min-width: 400px; }';
        echo "\n</style>";
    }
    add_action( 'admin_print_styles', 'patch_geodirectory-navigation_panel_css' ,90);
    

    Regards

    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: Search button textless #77891
     Radu
    Moderator
    This reply has been set as private.
    in reply to: Remove PMPro and GO PT Notifications #77838
     Radu
    Moderator

    Hi,

    This is not a solution to hide plugins update notifications. In future your site might be vulnerable to hacker attacks if you don’t keep your plugins updated.

    But anyways you can use this function to set display none for that div with notifications.

    Add this functions in kleo-child/functions.php

    COPY CODE
    
    function remove_tgmpa_notifications(){
        echo "<style>\n";
        echo '#setting-error-tgmpa { clear: both;display: none; }';
        echo "\n</style>";
    }
    add_action( 'admin_print_styles', 'remove_tgmpa_notifications' ,90);
    

    Best Regards

    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: Kleo 3.07 incompatible #77557
     Radu
    Moderator

    Hi,

    The problem was caused by “….” at line 161…

    COPY CODE
    
    <?php
    /**
     * The template Masonry blog item
     *
     * @package WordPress
     * @subpackage Kleo
     * @since Kleo 1.0
     */
    ?>
    
    <article id="post-<?php the_ID(); ?>" <?php post_class(array("post-item")); ?>>
    <div class="post-content animated animate-when-almost-visible el-appear">
    
    <?php
    global $kleo_config;
    $kleo_post_format = get_post_format();
    
    /* For portfolio post type */
    if ( get_post_type() == 'portfolio' ) {
        if ( get_cfield( 'media_type' ) && get_cfield( 'media_type' ) != '' ) {
            $media_type = get_cfield( 'media_type' );
            switch ( $media_type ) {
                case 'slider':
                    $kleo_post_format = 'gallery';
                    break;
    
                case 'video':
                case 'hosted_video':
                    $kleo_post_format = 'video';
                    break;
            }
        }
    }
    
    switch ( $kleo_post_format ) {
    
        case 'video':
    
            //oEmbed video
            // **************** DEBUT MODIF HD *****************************
            // init $video = get_cfield( 'embed' );
            $video = get_cfield('video_url');
            // ****************** FIN MODIF HD *****************************
    
            // video bg self hosted
            $bg_video_args = array();
            $k_video = '';
    
            if (get_cfield( 'video_mp4' ) ) {
                $bg_video_args['mp4'] = get_cfield( 'video_mp4' );
            }
            if (get_cfield( 'video_ogv' ) ) {
                $bg_video_args['ogv'] = get_cfield( 'video_ogv' );
            }
            if (get_cfield( 'video_webm' ) ) {
                $bg_video_args['webm'] = get_cfield( 'video_webm' );
            }
    
            if ( !empty( $bg_video_args ) ) {
                $attr_strings = array(
                    'preload="none"'
                );
    
                if (get_cfield( 'video_poster' ) ) {
                    $attr_strings[] = 'poster="' . get_cfield( 'video_poster' ) . '"';
                }
    
                $k_video .= '<div class="kleo-video-wrap"><video ' . join( ' ', $attr_strings ) . ' controls="controls" class="kleo-video" style="width: 100%; height: 100%;">';
    
                $source = '<source type="%s" src="%s" />';
                foreach ( $bg_video_args as $video_type => $video_src ) {
                    $video_type = wp_check_filetype( $video_src, wp_get_mime_types() );
                    $k_video .= sprintf( $source, $video_type['type'], esc_url( $video_src ) );
                }
    
                $k_video .= '</video></div>';
    
                echo $k_video;
            }
            // oEmbed
            elseif ( !empty( $video ) ) {
                global $wp_embed;
                echo apply_filters( 'kleo_oembed_video', $video );
            }
    
            break;
    
        case 'audio':
    
            $audio = get_cfield('audio');
            if (!empty($audio)) { ?>
                <div class="post-audio">
                    <audio preload="none" class="kleo-audio" id="audio_<?php the_id();?>" style="width:100%;" src="<?php echo $audio; ?>"></audio>
                </div>
            <?php
            }
            break;
    
        case 'gallery':
    
            $slides = get_cfield('slider');
            echo '<div class="kleo-banner-slider">'
                .'<div class="kleo-banner-items" data-speed="2000">';
            if ( $slides ) {
                foreach( $slides as $slide ) {
                    if ( $slide ) {
                        $image = aq_resize( $slide, $kleo_config['post_gallery_img_width'], $kleo_config['post_gallery_img_height'], true, true, true );
                        //small hack for non-hosted images
                        if (! $image ) {
                            $image = $slide;
                        }
                        echo '<article>
    								<a href="'. $slide .'" data-rel="modalPhoto[inner-gallery]">
    									<img src="'.$image.'" alt="'. get_the_title() .'">'
                            . kleo_get_img_overlay()
                            . '</a>
    							</article>';
                    }
                }
            }
    
            echo '</div>'
                . '<a href="#" class="kleo-banner-prev"><i class="icon-angle-left"></i></a>'
                . '<a href="#" class="kleo-banner-next"><i class="icon-angle-right"></i></a>'
                . '<div class="kleo-banner-features-pager carousel-pager"></div>'
                .'</div>';
    
            break;
    
        case 'quote':
        case 'link':
            // ******************* DEBUT MODIF HD *****************************
            $image = get_cfield('img-site'); // J'ai enlevé une partie du code initial
            echo '<a href="'. get_permalink() .'" class="element-wrap" rel="nofollow">'
                . '<img src="' . $image . '"/>'
                . kleo_get_img_overlay()
                . '</a>';
        // ******************* FIN MODIF HD *****************************
    
        /*	echo '<div class="inner-content">'
            . get_the_content()
            . '</div><!--end inner-content-->';
            break; */
    
        case 'status':
    
            echo '<div class="inner-content">'
                . get_the_content()
                . '</div><!--end inner-content-->';
            break;
    
        case 'image':
        default:
            if ( kleo_get_post_thumbnail_url() != '' ) {
                echo '<div class="post-image">';
                // ******************* DEBUT MODIF HD *****************************
                $img_url = kleo_get_post_thumbnail_url();
                $image = get_cfield('image');
                /* $image = aq_resize( $img_url, $kleo_config['post_gallery_img_width'], null, true, true, true ); */
                // ******************* FIN MODIF HD *****************************
                if( ! $image ) {
                    $image = $img_url;
                }
                echo '<a href="'. get_permalink() .'" class="element-wrap">'
                    . '<img src="' . $image . '" alt="'. get_the_title() .'">'
                    . kleo_get_img_overlay()
                    . '</a>';
    
                echo '</div><!--end post-image-->';
            }
    
            break;
    }
    ?>
    
    <?php if ($kleo_post_format != 'quote' && $kleo_post_format != 'link' ) : ?>
    
        <div class="post-header">
    
            <?php if ($kleo_post_format != 'status'): ?>
                <h3 class="post-title entry-title"><a href="<?php the_permalink();?>"><?php the_title();?></a></h3>
            <?php endif; ?>
    
            <span class="post-meta">
                        <?php kleo_entry_meta();?>
                    </span>
    
        </div><!--end post-header-->
    
        <?php if ( $kleo_post_format != 'status' ): ?>
    
            <?php if (kleo_excerpt() != '<p></p>') : ?>
                <div class="post-info">
    
                    <div class="entry-summary">
                        <?php echo kleo_excerpt(); ?>
                    </div><!-- .entry-summary -->
    
                </div><!--end post-info-->
            <?php endif; ?>
    
        <?php endif; ?>
    
    <?php endif; ?>
    
    <div class="post-footer">
        <small>
            <?php do_action('kleo_post_footer');?>
    
            <a href="<?php the_permalink();?>"><span class="muted pull-right"><?php _e( "Read more","kleo_framework" );?></span></a>
        </small>
    </div><!--end post-footer-->
    
    </div><!--end post-content-->
    </article>
    
    
    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: Where to paste script in head tag #77346
     Radu
    Moderator

    Hi,

    You can do this by adding the below code to your kleo-child/functions.php

    COPY CODE
    
    
    function kleo_adding_custom_scripts() {
        wp_register_script('my_script_name', get_stylesheet_directory_uri() . '/js/amazing_script.js', array('jquery'),'1.1', true);
        wp_enqueue_script('my_script_name');
    }
    
    add_action( 'wp_enqueue_scripts', 'kleo_adding_custom_scripts' );
    
    

    Then put your script in this location wp-content/themes/kleo-child/js/ with name amazing_script.js

    Regards

    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: Share this buttons #77340
     Radu
    Moderator

    Hi,

    Replace the code from above with this

    COPY CODE
    
    add_shortcode('custom_kleo_social_activity_share', 'custom_kleo_social_activity_share');
    
    function custom_kleo_social_activity_share() {
        ?>
        <span class="kleo-social-activity-share <?php echo bp_get_activity_type(); ?>">
            <a class="kleo-social-activity-share-item facebook" onclick="window.open(this.href,'Share','width=600,height=400'); return false;" href="https://www.facebook.com/sharer/sharer.php?t=<?php echo bp_get_activity_feed_item_title(); ?>&u=<?php echo bp_get_activity_thread_permalink(); ?>"><i class="icon-facebook"></i></a>
            <a class="kleo-social-activity-share-item twitter" onclick="window.open(this.href,'Share','width=600,height=400'); return false;" href="http://twitter.com/share?text=<?php echo bp_get_activity_feed_item_title(); ?>&url=<?php echo bp_get_activity_thread_permalink(); ?>"><i class="icon-twitter"></i></a>
            <a class="kleo-social-activity-share-item google" onclick="window.open(this.href,'Share','width=600,height=400'); return false;" href="https://plus.google.com/share?url=<?php echo bp_get_activity_thread_permalink(); ?>"><i class="icon-gplus"></i></a>
        </span>
    <?php
    }
    
    
    
    

    Then use this code [custom_kleo_social_activity_share] where you want to icons to appear.

    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 solution
    in reply to: Fade out kleo-main-header for certain pages #77240
     Radu
    Moderator

    Hi

    Css path to style only single job pages

    COPY CODE
    
    body.single-job_listing  {}
    body.single-job_listing .header-color.social-header {display:none;}
    

    CSs path to style only single events pages

    COPY CODE
    
    body.single-event {}
    body.single-event .header-color.social-header {display:none;}
    

    Best Regards

    Radu

    CSs path to style only single member pages

    COPY CODE
    
    body.members .header-color.social-header {display:none;}
    
    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: Is there a way to make the width of tabs responsive? #77229
     Radu
    Moderator

    By using this CSS modifications will be applied only for this page, (page with id )

    COPY CODE
    
    
    body.page-id-19038 li.vc_tta-tab {
        width: 25%;
        padding:0 !important;
        margin: 0 !important;
    }
    

    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: Is there a way to make the width of tabs responsive? #77228
     Radu
    Moderator

    Hi,

    Use this css add it to Wp-Admin -> Theme Options -> General Settings -> Quick CSS

    COPY CODE
    
    li.vc_tta-tab {
        width: 25%;
        padding:0 !important;
        margin: 0 !important;
    }
    

    Let me know if its ok

    Best Regards

    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: Background image #77200
     Radu
    Moderator

    Hi,

    USe this css, i see that the row from vc have background assigned you can set the background from vc backend of your homepage or use this css

    COPY CODE
    
    body.page-id-816 .main-color {background-image:url(http://www.keenthemes.com/preview/metronic/theme/assets/global/plugins/jcrop/demos/demo_files/image1.jpg);}
    

    You can add the search form on member directory by navigating to WP-Admin -> Users -> Profile Search -> Select your form -> From right site -> Add to directory set YES.

    Regards

    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: Share this buttons #77197
     Radu
    Moderator

    Hi,

    Add code to your function.php from kleo-child

    COPY CODE
    
    add_shortcode('custom_kleo_social_activity_share', 'custom_kleo_social_activity_share');
    
    function custom_kleo_social_activity_share() {
        ?>
        <span class="kleo-social-activity-share <?php echo bp_get_activity_type(); ?>">
            <a class="kleo-social-activity-share-item facebook" onclick="window.open(this.href,'Share','width=600,height=400'); return false;" href="https://www.facebook.com/sharer/sharer.php?t=<?php echo bp_get_activity_feed_item_title(); ?>&u=<?php echo bp_get_activity_thread_permalink(); ?>"><i class="icon-facebook"></i></a>
            <a class="kleo-social-activity-share-item twitter" onclick="window.open(this.href,'Share','width=600,height=400'); return false;" href="http://twitter.com/share?text=<?php echo bp_get_activity_feed_item_title(); ?>&url=<?php echo bp_get_activity_thread_permalink(); ?>"><i class="icon-twitter"></i></a>
            <a class="kleo-social-activity-share-item google" onclick="window.open(this.href,'Share','width=600,height=400'); return false;" href="https://plus.google.com/share?url=<?php echo bp_get_activity_thread_permalink(); ?>"><i class="icon-gplus"></i></a>
            <a class="kleo-social-activity-share-item mail" href="mailto:?body=<?php echo bp_get_activity_feed_item_title(); ?> <?php echo bp_get_activity_thread_permalink(); ?>"><i class="icon-mail"></i></a>
        </span>
    <?php
    }
    

    Then use this code [custom_kleo_social_activity_share] where you want to icons to appear.

    Best Regards

    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: customise post / Make post format #77083
     Radu
    Moderator

    Hi,

    If you want to add a simple thing at the bottom of your post use this function.

    COPY CODE
    
    function CustomKleoAddContentAfterPost( $content ) {
     
        if( is_single() ) {
     
            $shortcode = '<a href="http://google.com"><img src="http://angierfellowship.dnsalias.com/wp-content/uploads/2014/03/img-600x390.gif"></a>';
            $content .= '<h4>My Custom content</h4>';
            $content .= $shortcode;
        }
     
        return $content;
     
    }
    add_filter('the_content', 'CustomKleoAddContentAfterPost');
    

    If you want to make your custom post template just copy the original template from parent theme

    example :

    wp-content/themes/kleo/content-image.php

    wp-content/themes/kleo-child/content-image.php

    Note the Kleo Child needs to be active

    Best Regards

    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: Revolution slider animation #77074
     Radu
    Moderator

    Hi,

    See attachment for the issue with disappearing text.

    If you want to press the button and then to scroll down look here : https://archived.seventhqueen.com/forums/topic/smooth-anchor#post-65836 ( read entire topic )

    Regarding the ajax error try to put this in .htaccess

    COPY CODE
    
    <IfModule mod_security.c>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </IfModule>
    

    Best Regards

    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: Kleo 3.07 incompatible #77062
     Radu
    Moderator

    Hi,

    The get_cfield function it’s part of ACF Plugin kleo uses the get_cfield function so , try like this

    COPY CODE
    
    			case 'video':
    
    				//oEmbed video
    				// **************** DEBUT MODIF HD *****************************  
    				// init $video = get_cfield( 'embed' ); 
    				$video = get_cfield('video_url');
    				// ****************** FIN MODIF HD *****************************  
    
    			case 'link':
    			// ******************* DEBUT MODIF HD *****************************  
                             $image = get_cfield('img-site'); 
    				
    			echo '<a href="'. get_permalink() .'" class="element-wrap">'
                            . '<img src="' . $image . '">' 
                            . kleo_get_img_overlay()
                            . '</a>';
    ....
    			// ******************* FIN MODIF HD *****************************  
    		
    			/*	echo '<div class="inner-content">'
    				. get_the_content()
    				. '</div><!--end inner-content-->';
    				break; */
    ....
    			case 'image':
    			default:
    				if ( kleo_get_post_thumbnail_url() != '' ) {
    					echo '<div class="post-image">';
    			// ******************* DEBUT MODIF HD *****************************  
    					$img_url = kleo_get_post_thumbnail_url();
    
    					$image = get_cfield('image');
    					/* $image = aq_resize( $img_url, $kleo_config['post_gallery_img_width'], null, true, true, true ); */
                            // ******************* FIN MODIF HD ***************************** 
    ....
    
    

    REgards

    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: Customize thank you order page #77059
     Radu
    Moderator

    Hi,

    I think you receive the blank page because of this function :

    COPY CODE
    
    add_filter( 'the_content', 'wc_custom_thankyou' );
    function wc_custom_thankyou( $content ) {
        // Check if is the correct page
        if ( ! is_page(3) ) {
            return $content;
        }
    
    	// check if the order ID exists
    	if ( ! isset( $_GET['order'] ) ) {
            return $content;
        }
    
    	// intval() ensures that we use an integer value for the order ID
    	$order = wc_get_order( intval( $_GET['order'] ) );
    
    	ob_start();
    
    	// Check that the order is valid
    	if ( ! $order ) {
            // The order can't be returned by WooCommerce - Just say thank you
            ?><p><?php echo apply_filters( 'woocommerce_thankyou_order_received_text', __( 'Thank you. Your order has been received.', 'woocommerce' ), null ); ?></p><?php
        } else {
            if ( $order->has_status( 'failed' ) ) {
                // Order failed - Print error messages and ask to pay again
                /**
                 * @hooked wc_custom_thankyou_failed - 10
                 */
                do_action( 'wc_custom_thankyou_failed', $order );
            } else {
                // The order is successfull - print the complete order review
                /**
                 * @hooked wc_custom_thankyou_header - 10
                 * @hooked wc_custom_thankyou_table - 20
                 * @hooked wc_custom_thankyou_customer_details - 30
                 */
                do_action( 'wc_custom_thankyou_successful', $order );
            }
        }
    	$content .= ob_get_contents();
    	ob_end_clean();
    	return $content;
    }
    

    Replace the existing function from functions.php with the function above, also replace id 3 with your thank you id page.

    COPY CODE
    
        // Check if is the correct page
        if ( ! is_page(3) ) {
    

    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: Advise please. Group Article. #77047
     Radu
    Moderator

    Yes the CSS it’s ok for hiding that elements but you can use this css path to match only the elements where that plugin it’s active.

    COPY CODE
    
    .article-content #buddypress .rtm-gallery-title {display: none; !important}
    .article-content #buddypress .author-box  {display: none; !important}
    .article-content #buddypress .pagination.no-ajax {display: none; !important}
    .article-content #buddypress .date {display: none; !important}
    

    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: Background image #77043
     Radu
    Moderator

    Hi,

    Try with this CSS

    COPY CODE
    
    body.page-id-816 {
    background-image: url("http://localhost:8080/wp/wp-content/themes/kleo/assets/img/bg-body.gif");
    background-repeat: repeat;
    }
    

    Replace “http://localhost:8080/wp/wp-content/themes/kleo/assets/img/bg-body.gif&#8221; with your image url .

    REgards

    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: Header and logo #76788
     Radu
    Moderator

    Hi,

    Use this css by adding it in Wp-Aadmin -> Theme Options -> General Settings -> Quick CSS

    COPY CODE
    
    @media screen and (max-width: 400px) {
    .navbar-header .logo {
    float:left;
    }
    }
    

    Best REgards

    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: Change page background color on specific pages #76784
     Radu
    Moderator

    Hi,

    Use this css

    COPY CODE
    
    body.woocommerce section.container-wrap.main-color {
        background-color: #FFF !important;
    }
    

    Add this css to WP-Admin -> Theme Options -> General Settings -> Quick CSS

    Regards

    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: Change page background color on specific pages #76783
     Radu
    Moderator

    Hi,

    Use this css

    COPY CODE
    
    body.woocommerce section.container-wrap.main-color {
        background-color: #FFF !important;
    }
    

    Add this css to WP-Admin -> Theme Options -> General Settings -> Quick CSS

    Regards

    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: Block animation not working after update #76780
     Radu
    Moderator

    Hi,

    Try to use this css

    COPY CODE
    
    
    .kleo-transform .animated.animate-when-visible, .kleo-transform .animated.animate-when-almost-visible, .cul {
        opacity: 1 !important;
    }
    

    Add this CSS to Theme Options -> General Settings -> Quick CSS.

    Let me know if this solve the visibility issue.

    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: How to add ad unit to archives #76627
     Radu
    Moderator

    Hi,

    Download the attachment, unzip the file, upload this file ( archive.php ) to kleo child root directory.

    Then open the archive.php at line 59 at variable

    COPY CODE
    
    $adcode = '<div style="width:728px; height:90px; background-color:red; position: relative;"> <img src="http://northdelawhere.happeningmag.com/wp-content/uploads/728x90-example-banner.jpg"></div>';
    

    replace the code with your ad code, you need to place ad code inside ”.

    $adcode = ‘PASTE HERE CODE’;

    That’s all.

    The code add after each two posts the ad

    Regards

    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: Reduce vertical space between items #76489
     Radu
    Moderator

    Hi,

    Use this CSS by adding the snippet from above to wp-admin -> Theme Options -> General Settings -> Quick CSS

    COPY CODE
    
    body.home .wpb_row, .wpb_content_element, ul.wpb_thumbnails-fluid > li, .last_toggle_el_margin, .wpb_button {
    margin-bottom: 0px !important;   
    }
    

    Best Regards

    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: remove footer #76469
     Radu
    Moderator

    Hi,

    You can do it like this, add this css to Wp-Admin -> Theme Options -> General Settings -> Quick CSS

    COPY CODE
    
    div#footer {
        display: none;
    }
    

    Best Regards

    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: Reduce number of footer columns #76465
     Radu
    Moderator

    Hi,

    Try like this :

    COPY CODE
    
    h4.widget-title {
        text-align: center;
        color: red;
    }
    

    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: Fade out kleo-main-header for certain pages #76458
     Radu
    Moderator

    In case of page members you can use like this

    COPY CODE
    
    body.members
    

    Please give me or tell me what plugin generate these pages
    /job/
    /events/

    REgards

    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: Dissable menu underline #76067
     Radu
    Moderator

    Hi,

    Use this CSS, add this code to wp-admin – Theme Options -> General settings -> Quick CSS.

    COPY CODE
    
    .kleo-main-header .nav > li.active > a {
    box-shadow: none !important;
    }
    

    Best Regards

    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: Fade out kleo-main-header for certain pages #75705
     Radu
    Moderator

    Hi,

    You can hide the top bar like this

    COPY CODE
    
    body.page-id-7 .header-color.social-header {display:none;}
    

    This will be set display none for the social header only in page with id 7, if you want to hide in multiple pages you will do like this

    COPY CODE
    
    body.page-id-7 .header-color.social-header,body.page-id-8 .header-color.social-header, body.page-id-9 .header-color.social-header {display:none;}
    

    Best Regards

    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: Change website title font style #75635
     Radu
    Moderator
    COPY CODE
    
    .kleo-main-header .navbar-header strong.logo a {
        font-family: 'Montserrat', sans-serif;
        font-size:15px !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: Background image #75549
     Radu
    Moderator

    Hi,

    If you want to set a background for a certain page just add page-id-11 after body

    COPY CODE
    
    body.page-id-11 {
    background-image: url(“http://localhost:8080/wp/wp-content/themes/kleo/assets/img/bg-body.gif”);
    background-repeat: repeat;
    }
    

    replace 11 with your page id

    Regarding the widget i suggest you to set a margin-top for that widget only for this page or site-wide as you wish.

    Hope that it helps

    Best Regards

    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: Change website title font style #75535
     Radu
    Moderator

    Hi,

    By example if you want to use : https://www.google.com/fonts/specimen/Montserrat

    Go to Theme Options -> General settings -> Quick CSS paste this css.

    COPY CODE
    
    .kleo-main-header .navbar-header strong.logo a {
        font-family: 'Montserrat', sans-serif;   
    }
    

    Then Go to Theme Options -> Fonts and set for h6 your desired font family.

    if you will select another font family just replace Montserrat from css with your desired font family.

    Best regards

    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: Styling Problems with Kleo #75531
     Radu
    Moderator

    White Kleo scrolled header white transparency.

    COPY CODE
    
    .kleo-main-header.header-normal.header-scrolled {
        background-color: rgba(255,255,255,0.6);
    }
    

    Black Kleo scrolled header black transparency.

    COPY CODE
    
    .kleo-main-header.header-normal.header-scrolled {
        background-color: rgba(0,0,0,0.6);
    }
    

    it’s ok?

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

Log in with your credentials

Forgot your details?