Forum Replies Created

Viewing 40 posts - 5,841 through 5,880 (of 11,328 total)
  • Author
  • in reply to: no select icon with feature item #64884
     sharmstr
    Moderator

    Yes.

    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 have image appearing with 3rd party article #64838
     sharmstr
    Moderator

    Buddypress (and therefore Kleo) doesnt do that by default. You’ll need a plugin for that. Here’s one: https://rtcamp.com/products/rtmedia-activity-url-preview/

    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: Visual Composer WordPress 4.1 #64831
     sharmstr
    Moderator

    Hmmm. I cant access your server from my network. See? I’ll try again later.

    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

    Attachments:
    You must be logged in to view attached files.
    in reply to: Visual Composer WordPress 4.1 #64824
     sharmstr
    Moderator

    Still not working. I’ve tried port 21 and port 22. Do you have ip blocking or something similar?

    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: Visual Composer WordPress 4.1 #64822
     sharmstr
    Moderator

    ftp credentials dont work

    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: Visual Composer WordPress 4.1 #64815
     sharmstr
    Moderator

    Please respond privately with server and credential information for both WP and FTP.

    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

    I havent forgotten about you. Just havent figured it out yet.

    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: Side menu for logged in users #64806
     sharmstr
    Moderator

    Hmmmm. Try this in your child’s functions.php file

    COPY CODE
    
    add_action( 'init', 'remove_side_menu', 10 );
    function remove_side_menu() {
        if ( !is_user_logged_in() ) {
            remove_filter('wp_nav_menu_items', 'kleo_side_menu_button', 20, 2);
            remove_filter('body_class', 'kleo_offcanvas_classes');
            remove_action('kleo_after_page', 'kleo_show_side_menu');
        
        }
    }
    
    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: Icons don't appear for Visual Composer accordions #64803
     sharmstr
    Moderator

    No issues with the two sites I tested. Have you looked for errors in your browser console. Or tried enabling WP debug to see if your site is throwing errors? Did you upgrade VC when you upgraded Kleo?

    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

    Attachments:
    You must be logged in to view attached files.
    in reply to: Serious problems with most current Kleo update 3.0.. #64802
     sharmstr
    Moderator

    Known plugin conflict. Just search:

    read this: https://archived.seventhqueen.com/forums/topic/problem-activating-pm-pro-bbpress-addon-with-kleo-3-0-upgrade
    but apply the code from this: https://archived.seventhqueen.com/forums/topic/problem-activating-pm-pro-bbpress-addon-with-kleo-3-0-upgrade#post-62188

    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: Visual Composer WordPress 4.1 #64800
     sharmstr
    Moderator

    All you needed to do is add one line. Something like this

    COPY CODE
    
    define( 'WP_MEMORY_LIMIT', '256M' );
    
    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: Visual Composer WordPress 4.1 #64798
     sharmstr
    Moderator

    I dont see where you added it? All I see is the total cache stuff

    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: Facebook Register Button Missing #64794
     sharmstr
    Moderator

    I think that’s just an oversight since geo dir was just integrated. In any case, I’ve assigned this to abe so he’ll see it.

    In the meantime, try putting this in your childs functions.php file

    COPY CODE
    
    add_action('social_connect_form','kleo_fb_button_regpage');
    

    Unfortunately, geo dir didnt put an action at the top of the reg form, so it will show up below the form.

    You may also want to remove the or. If so, try this css

    COPY CODE
    
    #cus_registerform .hr-full, #cus_loginform .hr-full {
        display: none;
    }
    

    The devs will make this look a lot better in the future, but that should at least get you going for now.

    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 "archive for category" in the title #64786
     sharmstr
    Moderator

    Excellent. If you can find a plugin conflict, I’d like to know. Thank you.

    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 limit exceprt in member header #64785
     sharmstr
    Moderator

    Its set in a buddypress function. You can always ask over on the bp forums since its there plugin.

    But, going back to my first response… You can try the code in the link I gave to you initially. I’ve tested this and it seems to be working. Put the following in your childs functions.php file and change the $length from 10 to whatever you want.

    COPY CODE
    
    add_filter( 'bp_get_activity_latest_update_excerpt', 'wpse_56860_trim_buddypress_excerpt' );
    
    function wpse_56860_trim_buddypress_excerpt( $excerpt )
    {
        // Number of characters to show. Adjust this to your needs.
        $length = 10;
        return substr( $excerpt, 0, $length );
    }
    
    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 "archive for category" in the title #64780
     sharmstr
    Moderator

    I dont understand? If you are referring to my “makes no sense” comment, that wasnt intended to be a put down. I was merely stating a fact. It makes no sense because that function runs by default. So if it is a plugin conflict it would be happening even when you dont have it in your child theme. Does that clear things up a bit?

    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: Facebook Register Button Missing #64775
     sharmstr
    Moderator

    Its added to the buddypress widget. What widget is that?

    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: 404 Error #64774
     sharmstr
    Moderator

    No. But its common in general. The permalinks table gets corrupt quite often in WP

    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: Templates #64767
     sharmstr
    Moderator

    child theme

    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: 404 Error #64765
     sharmstr
    Moderator

    Try resaving your permalinks. You dont need to change it, just go to settings > permalinks and click save.

    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 "archive for category" in the title #64762
     sharmstr
    Moderator

    That makes no sense. The function already runs, you’re just adding a new copy of it. Standard WP stuff. If you think its a plugin conflict, then figure out which one. Also, again, you keep saying function.php but the file should be functions.php. Specifically /themes/kleo-child/functions.php

    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: Visual Composer WordPress 4.1 #64761
     sharmstr
    Moderator

    You need to increase your memory: http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/

    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: The future Home page #64756
     sharmstr
    Moderator

    You change the image like you would change the image for any VC row. Go into row settings and change the background image.

    That form is for searching Members (xprofile data) only. You can add a site search form to the same section and choose to only search forum posts if 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

    Attachments:
    You must be logged in to view attached files.
    in reply to: Hide "archive for category" in the title #64753
     sharmstr
    Moderator

    No. That’s how you do it. You probably made a mistake when you copied/pasted it.

    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: Facebook Registration #64747
     sharmstr
    Moderator

    It will only show once for a user to agree. After that, it doesnt show.

    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: endless php errors for js composer since last update #64745
     sharmstr
    Moderator

    btw – that response was for abe, not 5high-photohub

    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: endless php errors for js composer since last update #64744
     sharmstr
    Moderator

    I’ve done some testing and it logs the errors when you bring up a page in the backend. It only does this when either woo or k-elements is active. k-elements throws 1 set of errors. woo throws 4 sets of errors.

    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 "Archive for category" on website #64740
     sharmstr
    Moderator

    No. You’re site looks fine to me.

    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: Search Form delivers the same dropdown results #64739
     sharmstr
    Moderator

    Regarding the amount of results. The only way I see of changing this is to copy the kleo_ajax_search function from /kleo/lib/theme-functions.php into your child theme and edit the number of results to return. I suggest you dont do this. Its a large function that will probably be updated in the future. Additionally, adding more results will make it even slower.

    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: Search Form delivers the same dropdown results #64736
     sharmstr
    Moderator

    Not sure what you mean. If I change the search term it changes the results. Speed is dependent on your server/db speed. The search uses the standard get_posts() query which is optimized by default and only brings back 4 results.

    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: Mobile Menu Unresponsive after update #64732
     sharmstr
    Moderator

    Try clearing your cache. If that doesnt work, provide a link.

    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 "archive for category" in the title #64725
     sharmstr
    Moderator

    Works for me. Perhaps clear your cache? Also, its functions.php not function.php

    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

    Attachments:
    You must be logged in to view attached files.
    in reply to: Hide "archive for category" in the title #64723
     sharmstr
    Moderator

    You can either translate it by replacing it with ” or you can copy the kleo_title function to your childs functions.php file and edit as necessary. Sorry for not understanding the first two times 🙂

    COPY CODE
    
    function kleo_title()
    	{
    		$output = "";
            if (is_tag()) {
                $output = __('Tag Archive for:','kleo_framework')." ".single_tag_title('',false);
            }
    		elseif(is_tax()) {
                $term = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy'));
                $output = $term->name;
            }
    		elseif ( is_category() ) {
                //$output = __('Archive for category:', 'kleo_framework') . " " . single_cat_title('', false);
                $output = single_cat_title('', false);
            }
    		elseif (is_day())
    		{
    			$output = __('Archive for date:','kleo_framework')." ".get_the_time('F jS, Y');
    		}
    		elseif (is_month())
    		{
    			$output = __('Archive for month:','kleo_framework')." ".get_the_time('F, Y');
    		}
    		elseif (is_year())
    		{
    			$output = __('Archive for year:','kleo_framework')." ".get_the_time('Y');
    		}
            elseif (is_author())  {
                $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
                $output = __('Author Archive','kleo_framework')." ";
    
                if( isset( $curauth->nickname ) ) {
                    $output .= __('for:','kleo_framework')." ".$curauth->nickname;
                }
            }
    		elseif ( is_archive() )  {
    			$output = post_type_archive_title( '', false );
    		}
    		elseif (is_search())
    		{
    			global $wp_query;
    			if(!empty($wp_query->found_posts))
    			{
    				if($wp_query->found_posts > 1)
    				{
    					$output =  $wp_query->found_posts ." ". __('search results for:','kleo_framework')." ".esc_attr( get_search_query() );
    				}
    				else
    				{
    					$output =  $wp_query->found_posts ." ". __('search result for:','kleo_framework')." ".esc_attr( get_search_query() );
    				}
    			}
    			else
    			{
    				if(!empty($_GET['s']))
    				{
    					$output = __('Search results for:','kleo_framework')." ".esc_attr( get_search_query() );
    				}
    				else
    				{
    					$output = __('To search the site please enter a valid term','kleo_framework');
    				}
    			}
    
    		}
            elseif ( is_front_page() && !is_home() ) {
                $output = get_the_title(get_option('page_on_front'));
                
    		} elseif ( is_home() ) {
                if (get_option('page_for_posts')) {
                    $output = get_the_title(get_option('page_for_posts'));
                } else {
                    $output = __( 'Blog', 'kleo_framework' );
                }
                
    		} elseif ( is_404() ) {
                $output = __('Error 404 - Page not found','kleo_framework');
    		}
    		else {
    			$output = get_the_title();
    		}
            
    		if (isset($_GET['paged']) && !empty($_GET['paged']))
    		{
    			$output .= " (".__('Page','kleo_framework')." ".$_GET['paged'].")";
    		}
        
    		return $output;
    	}
    

    In the code above, I commented out the archive for category and added just the category name.

    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 "archive for category" in the title #64721
     sharmstr
    Moderator

    change it to
    .archive .page-title {
    display: none;
    }

    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: Go Pricing Preview #64719
     sharmstr
    Moderator

    The idea behind that was there might be certain pages where you dont want a footer. There’s no switch to turn it off sitewide.

    You can do one of two things. You can remove all of the widgets in footer columns 1 – 4. Or you can can put this in your theme options > general > quick css

    COPY CODE
    
    #footer { display: none; }
    
    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: no select icon with feature item #64718
     sharmstr
    Moderator

    What version of Kleo, k-elements and visual composer to you have running?

    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: PMpro invoice print Preview #64715
     sharmstr
    Moderator

    You can try this in your Theme Options > General > Quick css

    COPY CODE
    
    @media print {
        .pmpro_a-print {display: none; position: absolute; left: -9999px; }
        .pmpro-invoice .sidebar, .pmpro-invoice #footer, .pmpro-invoice #nav-below , .pmpro-invoice .kleo-quick-contact-wrapper, .pmpro-invoice #socket, .pmpro-invoice .breadcrumb-extra {display:none;}
        .pmpro-invoice .template-page {min-width: 100%;}
    
    }
    
    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 limit exceprt in member header #64708
     sharmstr
    Moderator

    perhaps this http://wordpress.stackexchange.com/questions/56860/truncate-latest-activity-in-buddypress

    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 "Archive for category" on website #64705
     sharmstr
    Moderator

    please search before posting: https://archived.seventhqueen.com/forums/topic/hide-archive-for-category-in-the-title

    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: Go Pricing Preview #64704
     sharmstr
    Moderator

    No. You dont need woo at all. That’s why pmpro has the payment section in their 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

Viewing 40 posts - 5,841 through 5,880 (of 11,328 total)

Log in with your credentials

Forgot your details?