Forum Replies Created

Viewing 40 posts - 4,921 through 4,960 (of 11,328 total)
  • Author
  • in reply to: Hide logo on scroll #69427
     sharmstr
    Moderator

    I assumed you were using the default header layout because you didnt say differently 🙂 I’ll get back to you on this.

    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 logo on scroll #69341
     sharmstr
    Moderator

    Cant see it without logging in.

    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: Non-member access and views #69340
     sharmstr
    Moderator

    No. Kleo is a theme. It stylizes the output of other plugins.

    WP Admin > Settings > Reading > Discourage search engines from indexing the site.

    If you’re going to be running and administering the site, I would strongly suggest you read up on wordrpess and 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: Making the display name unique #69314
     sharmstr
    Moderator

    You need to search either bbpress (if only using forum) or buddypress sites for a solution. Kleo doesnt touch any of that. I believe I’ve seen a plugin before.

    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

    If you look at all the kleo demos, they are filled with row and column background color and images. So, not a bug.

    Make sure you have the latest versions of

    Kleo 3.0.4
    K-elements 3.0
    VC 4.5.3

    Look for plugins that are overriding the css (conflicts)

    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 logo on scroll #69311
     sharmstr
    Moderator

    Try this in quick css

    .header-scrolled .navbar-header .logo {
    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: Conflicts with Visual Composer #69308
     sharmstr
    Moderator

    You can always look in /kleo/vc_templates to see which files are being overridden. If you dont like the Kleo way of doing it, you can copy the template file from VC to your child theme. Basically it would be overriding the override 🙂

    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: Feature Items Grid #69281
     sharmstr
    Moderator

    The plugin “events handler” is causing it. See attached.

    You can try putting this in your quick css to fix it

    .feature-item .feature-icon {
    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

    Attachments:
    You must be logged in to view attached files.
    in reply to: Kleo Install #69272
     sharmstr
    Moderator

    I dont know. Need access to see.

    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 Install #69267
     sharmstr
    Moderator

    You cant. Delete all the post and pages that were imported and do it again. There are bulk delete plugins that may help.

    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

    Assuming you’re talking about adding a widget using the WP customizer, did you guys change the active theme from child to parent? Theme options are set/saved at the theme level, so changing this would also change the theme options. I’ve tested on 3 of my sites and didnt have this issue.

    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: Feature Items Grid #69261
     sharmstr
    Moderator

    We need to see a link in order to figure out whats going on.

    What versions of kleo, k-elements and visual composer are you 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: Code in Menu Info? #69260
     sharmstr
    Moderator

    It only accepts html. You can try overriding the /kleo/page-parts/general-title-section.php template, but if you’re not experienced in php, I wouldnt suggest 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

     sharmstr
    Moderator

    That’s handled by buddypress, not Kleo. They have information in their documentation. https://codex.buddypress.org/developer/function-examples/core/bp_core_new_nav_item/

    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 the 'Favorite' Star Icon #69255
     sharmstr
    Moderator

    This might do it. Put it in your quick css

    COPY CODE
    
    #buddypress a.button.fav:before, #buddypress a.button.unfav:before, #buddypress a.fav.bp-secondary-action:before, #buddypress a.unfav.bp-secondary-action:before {
      content: "\e84a" !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: Global header content #69254
     sharmstr
    Moderator

    Not by default, but you can use add_action in your childs functions.php to do it. Edit as necessary.

    COPY CODE
    
    /***************************************************
    :: Add custom HTML to page header
     ***************************************************/
    
    add_action( 'kleo_before_main', 'kleo_global_header_content', 8 );
    
    function kleo_global_header_content() {
        echo '<section class="kleo-page-header container-wrap main-color">';
        echo "Add whatever you want here.";
        echo '</section>';
    }
    
    /***************************************************
    :: Add custom HTML to bottom page
     ***************************************************/
    
    add_action( 'kleo_after_main_content', 'kleo_global_bottom_content', 12 );
    
    function kleo_global_bottom_content() {
          echo '<div class="kleo-page-bottom">';
          echo "Add whatever you want here.";
          echo '</div>';
    }
    
    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: Set new path to logo #69251
     sharmstr
    Moderator

    Off the top of my head, it would be something like

    COPY CODE
    
    if ( is_user_logged_in() ) {
    // user is logged in show different logo
    	<img id="logo_img" title="<?php bloginfo('name'); ?>" src="http://yoursite.com/path/to/your/logo.jpg" alt="<?php bloginfo('name'); ?>">
    } else {
    	 <img id="logo_img" title="<?php bloginfo('name'); ?>" src="<?php echo $logo_path; ?>" alt="<?php bloginfo('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: wishlist overlaps #69249
     sharmstr
    Moderator

    I’ve never read the doc. My guess is Kleo ignores that and adds it in one place.

    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: In Kleo Search i can't see search results of members #69248
     sharmstr
    Moderator

    How long have you had buddypress-functions.php in your child theme? My guess its an old version of the file and that’s why the members search isnt working. Can you temporarily remove that file and see if that fixes the issue?

    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: Cropping issues in group picture upload #69210
     sharmstr
    Moderator

    Themeforest. Open the full download, then open the kleo.zip and check the styles.css file. It will have the version in there.

    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: Maintenance Mode Page #69168
     sharmstr
    Moderator

    About 1.5 years ago I used a plugin that allow me to redirect everyone except admins to a page. For the life of me I cant remember the name of it. If I come across it I’ll let you know.

    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: Login Redirect after email activation #69164
     sharmstr
    Moderator

    The site screwed up the links. Here’s a text file with them. Basically all you are doing is adding a class that will popup up the kleo login modal when clicked.

    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: Maintenance Mode Page #69163
     sharmstr
    Moderator

    I think I was clear that there is no maintenance “page” and that’s its built using a single function which I provided.

    There’s nothing stopping you from using VC shortcodes copied from whatever page you want in the function.

    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: In Kleo Search i can't see search results of members #69160
     sharmstr
    Moderator

    Can you translate for 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: In Kleo Search i can't see search results of members #69104
     sharmstr
    Moderator

    Your page isnt loading, so I cant see which search form you are referring to. If its the one in the menu, have you selected members as an option in Theme Options?

    If its the search bar shortcode in visual composer, have you selected members as an option in the search bar shortcode 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: BuddyPress Adding Profile Photo isn't working #69103
     sharmstr
    Moderator

    …. hence the reason why I told you to purge your CDN in the first place 🙂

    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: BuddyPress Adding Profile Photo isn't working #69102
     sharmstr
    Moderator

    You CDN probably had old files.

    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: Add Listing Page – GeoDirectory #69096
     sharmstr
    Moderator

    Right. Sorry.

    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: Read More button and WPML issue #69095
     sharmstr
    Moderator

    Not really. Have you googled anything like ‘translate visual composer”?

    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: Read More button and WPML issue #69091
     sharmstr
    Moderator

    That’s generated from Visual Composer. Does this help you? https://wpml.org/2014/06/use-visual-composers-page-builders-wpml/

    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: buddy press docs #69089
     sharmstr
    Moderator

    Figures. Lots of issues with that plugin.

    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

    Awesome! Thank you for the info. Very helpful.

    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

    Great. That’s good to know. Can you tell us what version you were 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: WP Geodirectory issue #69078
     sharmstr
    Moderator

    You also need to update Kleo to 3.0.4

    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: WooCommerce shop page not displayed properly #69076
     sharmstr
    Moderator

    Your site is throwing 404 errors for the required jquery scripts.

    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: buddy press docs #69074
     sharmstr
    Moderator

    Moved this since its not a bug.

    I installed it and it works fine with Kleo. See attached. Your issue is somewhere else. Perhaps a plugin conflict.

    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: Get previous versions of KLEO theme #69070
     sharmstr
    Moderator

    Send your request to dev@seventhqueen.com

    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: Activity Feed #69068
     sharmstr
    Moderator

    You can try controlling it with this css. Adjust the padding as necessary. Beyond that, I dont know.

    COPY CODE
    
    .fluid-width-video-wrapper {
    padding-top: 35% !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: BuddyPress Adding Profile Photo isn't working #69067
     sharmstr
    Moderator

    🙂 Report back as it might help others.

    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: Login Redirect after email activation #69066
     sharmstr
    Moderator

    Copy /kleo/buddypress/members/activate.php to your child theme and add the kleo-show-login class to the login link.

    Change this line

    COPY CODE
    
    <p><?php printf( __( 'Your account was activated successfully! You can now <a href="%s">log in</a> with the username and password you provided when you signed up.', 'buddypress' ), wp_login_url( bp_get_root_domain() ) ); ?></p>
    

    to this

    COPY CODE
    
    <p><?php printf( __( 'Your account was activated successfully! You can now <a href="%s">log in</a> with the username and password you provided when you signed up.', 'buddypress' ), wp_login_url( bp_get_root_domain() ) ); ?></p>
    
    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 - 4,921 through 4,960 (of 11,328 total)

Log in with your credentials

Forgot your details?