Forum Replies Created

Viewing 40 posts - 81 through 120 (of 1,218 total)
  • Author
  • in reply to: Member search in group not working #103540
     sharmstr
    Moderator

    Got it. I’m submitting the fix to the devs now. In the meantime, go to /kleo/buddypress/groups/single/members.php and change line 1 from

    COPY CODE
    
    <?php if ( bp_group_has_members( 'exclude_admins_mods=0&per_page='.sq_option('bp_members_perpage', 12) ) ) : ?>
    

    to

    COPY CODE
    
    <?php if ( bp_group_has_members( bp_ajax_querystring( 'group_members' ) . '&exclude_admins_mods=0&per_page='.sq_option('bp_members_perpage', 12) ) ) : ?>
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: GeoDirectory Demo page and set up #103522
     sharmstr
    Moderator

    Your minify css is screwing it up. Put this in your quick css

    COPY CODE
    
    .page-id-7343 .template-page.col-sm-12.tpl-no {
        padding-top: 0 !important;
    }
    

    Your site is also throwing jquery errors. Probably for the same minify reasons.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Cleo Button and RevSlider #103521
     sharmstr
    Moderator

    The are overriding the .btn class in wpe-common.css. Specifically they are adding a gradient background image.

    Anyhow, put this in your quick css.

    COPY CODE
    
    
    a.btn.btn-see-through.btn-animated {
        background-image: none !important;
    }
    
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Change color of Price table buttons #103391
     sharmstr
    Moderator

    Click on the gear icon in vc and try this css. Change to suit your needs

    COPY CODE
    
    a.btn.btn-default {
        color: red;
        background-color: pink;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Remove date from recent posts widget #103249
     sharmstr
    Moderator

    Try this in your quick css

    COPY CODE
    
    .news-widget-wrap .news-time {
        display: none !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    You can try this css for specific categories

    COPY CODE
    
    .post-type-archive-product .product_cat-gun-manual figure.product-transition-single {
        display: none !important;
    }
    

    Or you can try this for all category pages

    COPY CODE
    
    .post-type-archive-product figure.product-transition-single {
        display: none !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    Try this

    COPY CODE
    
    .vc_wp_custommenu li a {
        border-width: 0px !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Kleo elements don’t work in posts ? #102880
     sharmstr
    Moderator

    That’s not a post. That’s a topic. They dont work in topics.

    A bit confusing because Kleo adds the shortcode selector to all backend text editors, but 99% of the time, topic will be created on the front-end where it doesnt show up.

    Alternatively, you can add button html.

    <a class="btn btn-default" href="">Button text</a>

    But bbpress overrides link styling (buttons are actually links), so you’ll also need some custom css to make it look like a button

    COPY CODE
    
    .main-color .btn-default {
        background-color: #f7f7f7 !important;
        border: 1px solid #eeeeee !important;
        padding: 10px 10px !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Social Share colour #102879
     sharmstr
    Moderator

    You can try this

    COPY CODE
    
    .share-links span a {
        color: #fff !important;
    }
    .share-links .hr-title {
        color: #fff !important;
    }
    section.main-color.container-wrap.social-share-wrap {
        background-color: #000 !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Sticky top bar #102873
     sharmstr
    Moderator

    Add this

    COPY CODE
    
    #header .is-sticky .kleo-main-header { margin-top: 40px !important;}
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Changing color on main header #102858
     sharmstr
    Moderator

    The menu color is set in Theme Options > Styling > Header: Link color and Link Hover color.

    You can set the header background color in the same section as above. If you want your main menu background to be semi-transparent, you can try this in your quick css and change ‘2’ to adjust the darkness.

    COPY CODE
    
    .kleo-main-header.header-normal {
        background-color: rgba(0,0,0,0.2) !important;
    }
    

    The transparency in that demo during page scroll is set up by editing the page you want that to happen on, scroll down theme general settings and enabling transparent main menu. You should only do that on pages where you have an image or slider that will sit under the menu.

    You can highlight text in 1 of 2 ways. Either by wrapping the title in em tags

    COPY CODE
    
    <em>highlight</em>
    

    or by using the btn-highlight class in the css class field

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Move member icons to header #102511
     sharmstr
    Moderator

    You cant “move” them. You can create links to different sections of the profile using ##profile_link## as detailed in the Kleo documentation.

    You can hide the BP navigation tabs using this css

    COPY CODE
    
    .bp-user #buddypress #item-nav {
        display: none !important;
    }
    

    Keep in mind that you’ll have to remember to add new link to the main menu if you install a plugin that adds a bp profile tab.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Can not change the font #102510
     sharmstr
    Moderator

    One of two reasons

    1 – You need to clear your server cache or purge your cdn if you have those in place.

    2 – You need to put this in your child theme’s functions.php file and resave your theme options

    COPY CODE
    
    add_filter( 'kleo_theme_options_ajax', '__return_false' );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Main menu not optimised from mobile #102508
     sharmstr
    Moderator

    It does support levels. Add this to your quick css

    COPY CODE
    
    #header .navbar-nav li .caret:after {
        color: #fff !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Change colour of Social Sharing Icons #102507
     sharmstr
    Moderator

    Those aren’t social sharing (just to be clear). Not sure why you want to change the icons to black since you wont be able to see them. But in any case, try this.

    COPY CODE
    
    #footer .kleo-social-icons li {
        display: inline;
        font-size: 40px;
        padding-right: 20px;
    }
    #footer .kleo-social-icons i {
        color: #000 !important;
    }
    #footer .kleo-social-icons i:hover {
        color: orange !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Custom code #102502
     sharmstr
    Moderator

    Try this css

    COPY CODE
    
    @media (max-width: 991px) {
    .small-listing .post-image {
        display: none !important;
    }
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Center menu, no logo #102294
     sharmstr
    Moderator

    Theme Options > Header Options.

    – Choose the center menu style.
    – Set main menu height to whatever you want.

    Theme Options > General
    – Add this to your quick css to hide the logo

    COPY CODE
    
    .navbar-header .logo {
        display: none !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Social Share & GeoDirectory issue #102136
     sharmstr
    Moderator

    You dont have to do that in Kleo 4.0.

    In the meantime, you can just do this

    COPY CODE
    
    add_action('geodir_details_main_content', 'add_social_sharing', 35);
    
    function add_social_sharing() {
    
        get_template_part( 'page-parts/posts-social-share' );
    
    }
    
    

    or this

    COPY CODE
    
    add_action('geodir_article_close','kleo_geodir_social_share');
    function kleo_geodir_social_share() {
        get_template_part( 'page-parts/posts-social-share' );
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: about costomizing (Kleo-quick-contact) #102116
     sharmstr
    Moderator

    That’s not the correct code. That’s the form code, not the code that actually sends the email. This is the code that sends it

    COPY CODE
    
    function kleo_sendmail()
    	{
    		if(isset($_POST['action'])) {
    
    			$error_tpl = "<span class='mail-error'>%s</span>";
    			
    			//contact name
    			if(trim($_POST['contact_name']) === '') 
    			{
    				printf($error_tpl, __('Please enter your name.','kleo_framework') );
    				die();
    			}
    			else 
    			{
    				$name = trim($_POST['contact_name']);
    			}
    
    			///contact email
    			if(trim($_POST['contact_email']) === '') 
    			{
    				printf($error_tpl, __('Please enter your email address.','kleo_framework') );
    				die();
    			} 
    			elseif (!preg_match("/^[[:alnum:]][a-z0-9_.-]*@[a-z0-9.-]+.[a-z]{2,4}$/i", trim($_POST['contact_email']))) 
    			{
    				printf($error_tpl, __('You entered an invalid email address.','kleo_framework') );
    				die();
    			} 
    			else 
    			{
    				$email = trim($_POST['contact_email']);
    			}
    
    			//message
    			if(trim($_POST['contact_content']) === '') 
    			{
    				printf($error_tpl, __('Please enter a message.','kleo_framework') );
    				die();
    			} 
    			else 
    			{
    				if(function_exists('stripslashes')) {
    					$comment = stripslashes(trim($_POST['contact_content']));
    				} else {
    					$comment = trim($_POST['contact_content']);
    				}
    			}
    
    			$emailTo = sq_option('contact_form_to','');
    			if (!isset($emailTo) || ($emailTo == '') )
    			{
    				$emailTo = get_option('admin_email');
    			}
    
    			$subject = __( 'Contact Form Message', 'kleo_framework' );
    			apply_filters( 'kleo_contact_form_subject', $subject );
    
    			$body = __("You received a new contact form message:", 'kleo_framework') . "\n";
    			$body .= __("Name: ", 'kleo_framework') . $name . "\n";
    			$body .= __("Email: ", 'kleo_framework') .$email . "\n" ;
    			$body .= __("Message: ", 'kleo_framework') . $comment . "\n";
    
    			$headers[] = "Content-type: text/html";
    			$headers[] = "Reply-To: $name <$email>";
    			apply_filters('kleo_contact_form_headers',$headers);
    
    			if(wp_mail($emailTo, $subject, $body, $headers))
    			{
    				echo '<span class="mail-success">' . __("Thank you. Your message has been sent.", 'kleo_framework').' <i class="icon-ok icon-large"></i></span>';
    
    				do_action('kleo_after_contact_form_mail_send', $name, $email, $comment);
    			}
    			else
    			{
    				printf($error_tpl, __("Mail couldn't be sent. Please try again!",'kleo_framework') );
    			}
    
    		}
    		else
    		{
    			printf($error_tpl, __("Unknown error occurred. Please try again!",'kleo_framework') );
    		}
    		 die();
    	}
    

    Change $emailTo to whatever emails address you want. https://developer.wordpress.org/reference/functions/wp_mail/

    I will say the better way to do this is set up a forwarding address on your email server that will forward a copy of the email to whoever you want.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Hidden Share text #102101
     sharmstr
    Moderator

    Try this in your quick css

    COPY CODE
    
    .share-links div.hr-title {
        display: none !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: How to change page title style #101925
     sharmstr
    Moderator

    Put this in your quick css

    COPY CODE
    
    h1, h2, h3 {
        text-transform: uppercase !important;
    }
    
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Excerpt not showing on single post page #101827
     sharmstr
    Moderator

    Put this in your child theme’s functions.php file.

    COPY CODE
    
    function prepend_excerpt( $content ) {
    	if ( is_singular('post') ) {
    		global $post;
    		$content = "<h1>" . $post->post_excerpt . "</h1>" . $content;
    	}
    		return $content;
    }
    

    Seems odd that if this was such a big SEO deal that WP would do this automatically or have a switch in the settings. I wonder why big news sites dont have excerpts before their content and the article page. Is this a new thing?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Code to hide blog posts from buddypress activity stream #101726
     sharmstr
    Moderator

    That’s not a bug. Buddypress deprecated those in BP 2.2

    Try this

    COPY CODE
    
    //Block certain activity types from being added
    function bp_activity_dont_save( $activity_object ) {
        $exclude = array(
            'new_blog_comment',
            'new_blog_post'
        );
    
        // if the activity type is empty, it stops BuddyPress BP_Activity_Activity::save() function
        if( in_array( $activity_object->type, $exclude ) ) {
            $activity_object->type = false;
        }
    }
    
    add_action('bp_activity_before_save', 'bp_activity_dont_save', 10, 1 );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Link Color + Font #101718
     sharmstr
    Moderator

    One of two things

    1 – Clear your server cache and/or purge your cdn if you have those in place.

    2 – Put this in your child theme’s functions.php file, then resave your theme options.

    COPY CODE
    
    add_filter( 'kleo_theme_options_ajax', '__return_false' );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Post Grid in Kleo- shorten description #101712
     sharmstr
    Moderator

    There’s nothing special. Use the standard WP way of control excerpt length.

    COPY CODE
    
    function custom_excerpt_length( $length ) {
        return 20;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: live notifications #101558
     sharmstr
    Moderator

    Try this css

    COPY CODE
    
    .kleo-notifications-nav {
        z-index: 9000 !important;
    }
    .kleo-mobile-switch {
        display: none !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Hide Sidebar on Custompost type without Adminimize #101551
     sharmstr
    Moderator

    Change portfolio to your cpt name

    COPY CODE
    
    if ( is_admin() )  {
        add_action('do_meta_boxes', 'remove_cpt_meta_boxes');
    }
    
    function remove_cpt_meta_boxes()
        {
            if ( get_post_type() == 'portfolio' ) {
                remove_action('edit_form_advanced', array('sidebar_generator', 'edit_form'));
                remove_action('edit_page_form', array('sidebar_generator', 'edit_form'));
            }
        }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Problem with favicon #101443
     sharmstr
    Moderator

    Probably a caching issue. Clear your cache. If that doesnt work, try putting this in your child theme’s functions.php file, then resave your permalinks.

    COPY CODE
    
    add_filter( 'kleo_theme_options_ajax', '__return_false' );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: How to make the Pin feed home page header opaque #101352
     sharmstr
    Moderator

    Click on the gear icon in VC and add this css

    COPY CODE
    
    .navbar-transparent .navbar .kleo-main-header {
        background-color: rgba(0,0,0,0.4);
    }
    

    The image is a background, so you dont make it smaller. You can adjust how much is showing using the padding fields in the row settings.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: text cut-off on smartphone #101340
     sharmstr
    Moderator

    Might be one of the plugins you’re using thats causing it. But you can fix with this in your quick css

    COPY CODE
    
    ol {
        overflow-wrap: break-word;
    }
    p {
        overflow-wrap: break-word;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Share buttons goes outside container? #101338
     sharmstr
    Moderator

    This isnt a bug since you’re using a plugin to produce the share buttons. There’s no setting that can be toggle because again, this is a plugin that you’ve added.

    You can try this css

    COPY CODE
    
    #main div.sharedaddy, div.sharedaddy {
        max-width: 1280px;
        margin-left: auto;
    }
    

    Otherwise, please refer to their documentation on how to modify where the share icons are displayed: https://jetpack.me/support/sharing/

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Unable to hide social icons from top menu when enabled #101202
     sharmstr
    Moderator

    Strange.
    What files do you have in your child theme? I cant tell since you’ve disabled theme editor access. Do you have anything in your child theme’s functions.php file?

    You can always hide them with this css

    COPY CODE
    
    .kleo-social-icons {
        display: none !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Font size in recent posts widget #101166
     sharmstr
    Moderator

    By default its set to 93%. You can change it with

    COPY CODE
    
    .sidebar {
        font-size: 93% !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Present Related Articles ordered by date #101156
     sharmstr
    Moderator

    See if this works…

    Copy /kleo/page-parts/posts-related.php to your child theme (/kleo-child/page-parts/posts-related.php) and add the orderby date parameter to the argument list like…

    replace

    COPY CODE
    
    $args['tax_query'][] = array(
                    'taxonomy' => $tax,
                    'field' => 'id',
                    'terms' => $terms
                );
    

    with this

    COPY CODE
    
    $args['tax_query'][] = array(
                    'taxonomy' => $tax,
                    'field' => 'id',
                    'terms' => $terms,
                    'orderby' => 'date'
                );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Remove Page Titles but keep Post titles #101153
     sharmstr
    Moderator

    Yes, they are h1. If its an actual page, you can turn off titles by editing the page and scrolling down to Theme General Settings > Title section

    If its a plugin/wp generated page (like when you set your homepage to display posts), you can use this css

    COPY CODE
    
    .home-page .page-title {
        display: none !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    You can choose which meta to show in Theme Options > Blog. You can use this css class to change the meta font in the news shortcode (use the bigger-text method that I explained in your other topic)

    COPY CODE
    
    .bigger-text .article-meta a {
        font-size: 15px;
        color: #fff;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    3 – To change the text size, edit the shortcode and add bigger-text to the css box. Then click on the gear icon in vc and add this css (or you can put it in your quick css)

    COPY CODE
    
    .bigger-text {
        font-size: 20px;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    1 – If you dont want the images to be pulled from the text, then you need to set a featured image and the post format must be Standard or Image. You can put the text underneath by changing your shortcode settings so that the number of Featured posts to show big is equal to the number of posts you’re displaying (post count in build query).

    2 – You can use this css to change the sidebar images

    COPY CODE
    
    .news-widget-wrap img {
        width: 60px !important;
        height: 60px !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Unable to hide social icons from top menu when enabled #101144
     sharmstr
    Moderator

    Clear your server cache or cdn if you have one in place. If that doesnt solve the issue, try adding this to your child theme’s functions.php file and resave your Theme Options

    COPY CODE
    
    add_filter( 'kleo_theme_options_ajax', '__return_false' );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Removing breadcrumbs from only the homepage #101140
     sharmstr
    Moderator

    Put this in your quick css

    COPY CODE
    
    .home-page .page-title {
        display: none !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

Viewing 40 posts - 81 through 120 (of 1,218 total)

Log in with your credentials

Forgot your details?