Forum Replies Created

Viewing 40 posts - 5,761 through 5,800 (of 11,328 total)
  • Author
  • in reply to: Portfolio Grid Customisation #65245
     sharmstr
    Moderator

    Copy /kleo/page-parts/portfolio-masonry.php to your child theme. Search for aq_reize. There should be two of them; one for sliders and one for single images (default). Change those lines, replacing $img_width and $img_height to whatever you want. This obviously wont effect other post types like video.

    COPY CODE
    
    $image = aq_resize( $slide, $img_width, $img_height, true, true, true );
    $image = aq_resize( $slide, 300, 150, true, true, true );
    

    If you want to change the way it crops or anything else, read about it on the aq_resize wiki: https://github.com/syamilmj/Aqua-Resizer/wiki

    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 and Sensei clash #65242
     sharmstr
    Moderator

    Sounds like a memory issue. Try turning on debugging. Make sure to set display to true. https://codex.wordpress.org/Debugging_in_WordPress

    fyi – sensei and vc are running on the kleo demo site without 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: MyCred Badges for RTmedia #65238
     sharmstr
    Moderator

    https://rtcamp.com/products/rtmedia-mycred/

    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 Edit Registration / Profile Pages #65237
     sharmstr
    Moderator

    Are saying the entire page is blank? Or is it that just the fields you’ve added are missing? If that’s the case, did you add them to the Base group? That’s where they need to be for registration.

    In any case, I checked your site and there are several custom fields on your register page.

    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 remove the auto-hyperlinking? #65235
     sharmstr
    Moderator

    That’s not Kleo. Its buddypress doing it: https://buddypress.org/support/topic/automatic-links-in-profile-fields/

    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

    WP has functions that allow you to control the display of meta boxes: https://codex.wordpress.org/Function_Reference/remove_meta_box

    try this

    COPY CODE
    
    if ( is_admin() ) { 
    	function remove_product_meta_boxes() {
    		if( !current_user_can('manage_options') ) {
    			remove_meta_box( 'mymetabox_revslider_0', 'product', 'normal' );
    			remove_meta_box( 'theme_product', 'product', 'normal' );
    			remove_meta_box( 'header_content', 'product', 'normal' );
    			remove_meta_box( 'bottom_content', 'product', 'normal' );
    			remove_meta_box( 'post_layout', 'product', 'side' );
    			// sidebar
            	remove_action('edit_form_advanced', array('sidebar_generator', 'edit_form'));
            	remove_action('edit_page_form', array('sidebar_generator', 'edit_form'));			
    		}
    	} 
    	add_action( 'do_meta_boxes', 'remove_product_meta_boxes' );	
    }
    
    
    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 pages from Search Results #65232
     sharmstr
    Moderator

    Try this in your childs functions.php file. Change 30 and 1081 to the page ids you want to exclude.

    COPY CODE
    
    function exclude_single_posts_home($query) {
      if ($query->is_main_query()) {
        $query->set('post__not_in', array(30,1081));
      }
    }
    
    add_action('pre_get_posts', 'exclude_single_posts_home');
    
    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: Icon Preview #65231
     sharmstr
    Moderator

    Did you update Kleo, K-elements and VC?

    No list that I know of.

    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
    
    #comments .comment-respond, #comments-list .comment-respond {
    margin-left: 5px;
    }
    

    You can translate 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: Sticky Header and 'Go Down' Button #65185
     sharmstr
    Moderator

    So, this isnt exactly what you wanted for the menu, but using the below css will hide the main menu until a user starts to scroll.

    COPY CODE
    
    .sticky-wrapper.is-sticky {
      display: inline;
    }
    .sticky-wrapper {
      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: Sticky Header and 'Go Down' Button #65183
     sharmstr
    Moderator

    Forgot to say… there might be some jquery out there that will do that, but you’d have to implement it on your own.

    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 Header and 'Go Down' Button #65182
     sharmstr
    Moderator

    Quick fix meaning css or a change to a line of code.

    There’s no option to hide the menu on a certain section. Its either hidden or not.

    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

    Renaming the folder will disable 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: User capabilities #65174
     sharmstr
    Moderator

    This works with a featured image field. I just tested it and since it allows you to attach a featured image, Kleo will auto show in archive listings: https://wordpress.org/plugins/wp-user-frontend/

    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: Forum Look #65173
     sharmstr
    Moderator

    If you dont know code then you’ll have a hard time. There is a styling section in the bbpress documentation on their site. You can also search here.

    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: User capabilities #65171
     sharmstr
    Moderator

    I’ve used CRED before. https://wp-types.com/home/cred/ All of their plugins are great. But I used it in conjunction with a CPT I built that didnt need a featured image. Look at their docs or ask a presales question to see if it will do what 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: User capabilities #65170
     sharmstr
    Moderator

    There’s nothing built into Kleo or WP for that matter that gives you posting abilities on the front end. You need a 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

    https://archived.seventhqueen.com/forums/topic/kleo-updates-change-log

    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: Private message #65163
     sharmstr
    Moderator

    Its the same issue its always been. Nothing has changed. If you’d like messaging/pmpro to act differently, feel free to open a Feature Request topic: https://archived.seventhqueen.com/forums/forum/feature-requests/kleo-feature-requests

    Or, you can contact dev@seventhqueen.com for a quote on customizing it for you.

    Or, you can signup with PMPro and ask them for code to do it which would by pass Kleos way of doing 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

    ftp to your server and rename the folder for 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

    in reply to: User capabilities #65160
     sharmstr
    Moderator

    I have no idea. Ask the plugin developer. Maybe you have it configured wrong.

    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: User capabilities #65158
     sharmstr
    Moderator

    Then kleo isnt stopping it from working.

    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: I can't see the BOLD text #65155
     sharmstr
    Moderator

    try this is quick css

    b, strong {
    color: black;
    }

    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: User capabilities #65153
     sharmstr
    Moderator

    You didn’t answer my question.

    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: User capabilities #65149
     sharmstr
    Moderator

    Does it work with the 2015 theme enabled?

    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: I can't see the BOLD text #65147
     sharmstr
    Moderator

    Looks bold to me. See attached.

    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: Private message #65142
     sharmstr
    Moderator

    You didnt say that initially.

    Havent we already been through 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

     sharmstr
    Moderator

    Something isnt loading right.

    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: I can't see the BOLD text #65139
     sharmstr
    Moderator

    I need a link to a post that should be bold and isnt.

    I found a post that had bold in it and its working.

    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: Add search to mobile menu #65135
     sharmstr
    Moderator

    Need a link and credentials to your site.

    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

    Not sure why its not scrolling instead of jumping. I copied your page into my dev site and it scrolls. http://dev.sharmstr.com/one-page-test/ (click on contact). 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

    in reply to: user profile picture in main menu is incorrect #65126
     sharmstr
    Moderator

    There was a similar problem with login radius. Maybe try this fix. If it doesnt work, I’m not sure what to tell you. Most of those social login plugins override the bp avatar functions.

    COPY CODE
    
    function kleo_menu_user_avatar( $item_output, $item, $depth, $args ) {
    
        $output = '';
    
        if ( is_user_logged_in() ) {
    
            $url = bp_loggedin_user_domain();
    
            $attr_title = strip_tags( $item->attr_title );
    
    			$output .= '<a title="' . bp_get_loggedin_user_fullname() . '">has_children && in_array($depth, array(0,1)) ? ' js-activated' : '' ) . '" href="' . $url . '" title="' . $attr_title .'">' . bp_get_loggedin_user_avatar(array('width' => 25, 'height' => 25)) . '</a>';
    		
            $output .= ( $args->has_children && in_array($depth, array(0,1))) ? ' <span class="caret"></span></a>' : '</a>';
    
            return $output;
        } elseif ( $args->has_children && in_array( $depth, array( 0, 1 ) ) ) {
            return $item_output;
        } else {
            return '';
        }
    }
    
    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: Event creation on KLEO theme #65125
     sharmstr
    Moderator

    and here https://bbpress.trac.wordpress.org/ticket/2718

    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: Event creation on KLEO theme #65123
     sharmstr
    Moderator

    Its not from kleo. Its from bbpress: https://bbpress.org/forums/topic/minor-debug-notice-with-buppypress-version-2-2-beta/

    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

    respond privately with link and credentials. I know it works. You have something screwed up.

    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: I can't see the BOLD text #65120
     sharmstr
    Moderator

    We will need to see a link to determine what the problem is.

    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: Registration Button #65119
     sharmstr
    Moderator

    Assuming you’re still talking about the one that shows up from PMPro, you do it in PMPro > Advanced.

    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: Styling submenues #65118
     sharmstr
    Moderator

    ul.dropdown-menu.sub-menu a {
    color: #fff !important;
    }

    ul.dropdown-menu.sub-menu {
    background-color: #647da7 !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

    That’s auto set via jquery. When in a closed state, it should be set to display:none. You have something that screwing up the jquery and making it close right away. Maybe double firing.

    You can see on the demo site: http://seventhqueen.com/themes/kleo/blog-normal/

    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: Weird plus menu appearing? #65103
     sharmstr
    Moderator

    I just spent another 40 mins on it. I cant sort it out.

    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,761 through 5,800 (of 11,328 total)

Log in with your credentials

Forgot your details?