Forum Replies Created

Viewing 40 posts - 10,641 through 10,680 (of 11,328 total)
  • Author
  • in reply to: Live Search Members #30845
     sharmstr
    Moderator

    Got it. The problem was that those members didnt have any updates. They had activity, but it was stuff like ‘friends’ and ‘joined group’. I have a custom function on my site that doesnt add any of those activities to the db, so it was hard to test for that. Anyhow, can you add the new code that’s attached and see if it fixes 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

    Attachments:
    You must be logged in to view attached files.
    in reply to: Coloured featured icons #30838
     sharmstr
    Moderator

    Having different colors for the same icon within the same featured item grid isn’t easy. You’d probably have to edit the shortcode to add a icon color field, or add the colored icons to the drop down list.

    If you just want to target the icons in your dashboard without changing the color of the icon sitewide as the css above does, then you can add a class to the Featured Items Grid Settings and use it in your css.

    COPY CODE
    
    .my_featured_colors span.feature-icon.el-appear.icon-angle-left {
    color: red;
    }
    
    .my_featured_colors span.feature-icon.el-appear.icon-align-center {
    color: blue;
    }
    
    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 Search Members #30828
     sharmstr
    Moderator

    I need a link to your site and the exact string you typed into the search box

    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: Shortcodes for stats #30818
     sharmstr
    Moderator

    @abe Forgot to say that I hope its okay that I put the shortcode in the kleo menu. I thought it best not to create a separate menu to save space. I can change it so the menu item title says ‘colabs’ or something.

    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: STEPS TO UPDATE KLEO THEME AND PLUGINS #30814
     sharmstr
    Moderator

    @skundaram: Its in the documentation https://archived.seventhqueen.com/documentation/kleo#demo

    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: Shortcodes for stats #30811
     sharmstr
    Moderator

    Here’s the code for adding a new shortcode item (Post count) within the Kleo shortcode menu to get the amount of published posts by type. When you click on it in the menu, you need to edit the shortcode so that there is only one option

    So from this

    COPY CODE
    
    [colabs_post_count type=post|page|custom post type]
    

    to this

    COPY CODE
    
    [colabs_post_count type=post]
    

    You can use this within the animated numbers shortcode

    COPY CODE
    
    [kleo_animate_numbers animation="animate-when-almost-visible" timer="3000"][colabs_post_count type=post][/kleo_animate_numbers]
    

    Put this in functions.php

    COPY CODE
    
    /*add shortcode to get total number of published posts, pages or custom post types */
    
    function colabs_post_count( $atts, $content = null ) {
    	$a = shortcode_atts( array(
            'type' => '',
    	), $atts );
    	global $wp;
    	$post_count = wp_count_posts($a['type']);
    	$published_count = $post_count->publish;
        return $published_count;
    }
    add_shortcode( 'colabs_post_count', 'colabs_post_count' );
    add_filter( 'kleo_tinymce_shortcodes', create_function('$args','$args[""][] = array("name" => "Post count", "code" => "[colabs_post_count type=post|page|custom post type]"); return $args;' ) );
    
    
    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 Search Members #30798
     sharmstr
    Moderator

    Here’s version 2 of the code. I’ve added an excerpt of the members latest activity and at the bottom of the attached file, there’s instructions and code on how to disable the enter button from submitting the search form. Let me know if there are any issues.

    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: Live Search Members #30786
     sharmstr
    Moderator

    @giorgos

    change the following on the “view member results” line

    COPY CODE
    bp_get_members_slug()

    to

    COPY CODE
    
    site_url()."/".bp_get_members_slug()
    

    I’ll upload a new file when I’m done tweaking a few other things.

    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 use ONE PAGE functionality?? #30720
     sharmstr
    Moderator

    Build your page using VC. For each row, go into the row properties and assign an id (Element ID). Then build a new menu with links those ids. Go back to the page editor and assign that menu to the 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

    Attachments:
    You must be logged in to view attached files.
     sharmstr
    Moderator

    same as https://archived.seventhqueen.com/forums/topic/issue-reply-on-a-reply-in-the-activity-stream

    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 Search Members #30716
     sharmstr
    Moderator

    jQuery is your friend on this one and a very common request on the interwebs. Take your pick https://www.google.com/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=disable+enter+submit+wordpress

    If you cant sort it, let me know and I’ll do it tomorrow morning over coffee 🙂

    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 Search Members #30713
     sharmstr
    Moderator

    Sweet. I need to remember to just attach a file next time. Whoop!

    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: Column & Row Shortcodes #30711
     sharmstr
    Moderator

    It has VC, so yes. The easiest way to add to a post is to build it in a page using VC then switch over to classic mode -> text view. Copy it then paste into a post.

    [vc_row][vc_column width="1/3"][vc_column_text]Some Text[/vc_column_text][/vc_column][vc_column width="1/3"][vc_column_text]Some more text[/vc_column_text][/vc_column][vc_column width="1/3"][vc_column_text]Even More Text[/vc_column_text][/vc_column][/vc_row]

    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: Live Search Members #30706
     sharmstr
    Moderator

    it keeps doing it. let me attach

    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: Live Search Members #30705
     sharmstr
    Moderator

    should be this…

    COPY CODE
    
    
    $image = '<img /> $member-> ID, 'width' => 25, 'height' => 25, 'html' => false)) . '" class="kleo-rounded" alt="">';
    
    
    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

    Shoot. I had a long response to this but the forum was down when I posted it and it lost it all. Anyhow, short version. That message is controlled by rtMedia so its best to ask over in their forum. Kleo doesn’t do anything with that message. But, you can try this which will probably get you close

    COPY CODE
    
    
    function rtmedia_change_added_text( $action, $username, $count, $user_nicename, $media_type ) {  
        $action   = sprintf( __( '%s added %d %s', 'rtmedia' ), $username, $count, RTMEDIA_MEDIA_SLUG );  
        return $action;  
    }      
    add_filter('rtmedia_buddypress_action_text_fitler', 'rtmedia_change_added_text', 10, 5);
    
    
    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 Search Members #30701
     sharmstr
    Moderator

    Please re-paste that but put pre tags around it so I can see the whole 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: remove titles #30697
     sharmstr
    Moderator

    This has been asked before. Searching the forum is always a good way to find the answers you need. In any case

    https://archived.seventhqueen.com/forums/topic/remove-page-title-from-latest-posts-page

    Use the css in the above topic. You can swap out ‘blog’ with activity to do the same to the activity 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: Live Search Members #30696
     sharmstr
    Moderator

    LOL. Its not perfect, but should get you by until there’s official support in 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

    in reply to: Live Search Members #30690
     sharmstr
    Moderator

    Okay, I threw this together. Put it in your functions.php file. I’ve done some initial testing and seems to work. Let me know how it works out for you.

    COPY CODE
    
    
    /*add member results to live search */
    function kleo_ajax_search()
    {
    	//if "s" input is missing exit
    	if(empty($_REQUEST['s'])) die();
    
    	$output = "";
    	$defaults = array('numberposts' => 4, 'post_type' => 'any', 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false);
    	$defaults =  apply_filters( 'kleo_ajax_query_args', $defaults);
    
    	$query = array_merge($defaults, $_REQUEST);
    	$query = http_build_query($query);
    	$posts = get_posts( $query );
    	
    	
    	$members = bp_core_get_users(array('search_terms' => $_REQUEST['s'], 'per_page' => 4, 'populate_extras' => false));
    
    		//if there are no posts
    	if(empty($posts)  && $members['total'] == 0)
    	{
    		$output  = "<div class='kleo_ajax_entry ajax_not_found'>";
    		$output .= "<div class='ajax_search_content'>";
    		$output .= "<i class='icon icon-exclamation-sign'></i> ";
    		$output .= __("Sorry, no pages matched your criteria.", 'kleo_framework');
    		$output .= "<br>";
    		$output .= __("Please try searching by different terms.", 'kleo_framework');
    		$output .= "</div>";
    		$output .= "</div>";
    		echo $output;
    		die();
    	}
    	
    	//if there are members
    	if ($members['total'] != 0) {
    		$output .= "<h4>Members</h4>";
    		$output .= "<div>";
    		foreach ( (array) $members['users'] as $member ) {	
    			$image = '<img /> $member-> ID, 'width' => 25, 'height' => 25, 'html' => false)) . '" class="kleo-rounded" alt="">';
    			$link = apply_filters('kleo_custom_url', get_permalink($member->ID));
    			$classes = "format-".$format;
    			$output .= "<div class ='kleo_ajax_entry $classes'>";
    			$output .= "<div class='ajax_search_image'>$image</div>";
    			$output .= "<div class='ajax_search_content'>";
    			$output .= "<a>ID)."' class='search_title'>";
    			$output .= $member->display_name;
    			$output .= "</a>";
    			$output .= "</div>";
    			$output .= "</div>";
    		}
    		$output .= "<a>".__('View member results','kleo_framework')."</a>";
    		$output .= "</div>";
    	}
    	
    	//if there are posts
    	$post_types = array();
    	$post_type_obj = array();
    	foreach($posts as $post)
    	{
    		$post_types[$post->post_type][] = $post;
    		if(empty($post_type_obj[$post->post_type]))
    		{
    			$post_type_obj[$post->post_type] = get_post_type_object($post->post_type);
    		}
    	}
    
    	foreach($post_types as $ptype => $post_type)
    	{
    		if(isset($post_type_obj[$ptype]->labels->name))
    		{
    			$output .= "<h4>".$post_type_obj[$ptype]->labels->name."</h4>";
    		}
    		else
    		{
    			$output .= "<hr>";
    		}
    		foreach($post_type as $post)
    		{
    			$format = get_post_format($post->ID);
    			if (get_the_post_thumbnail( $post->ID, 'thumbnail' ))
    			{
    				$image = get_the_post_thumbnail( $post->ID, 'thumbnail' );
    			}
    			else
    			{
    				if ($format == 'video') {
    					$image = "<i class='icon icon-video'></i>";
    				}
    				elseif ($format == 'image' || $format == 'gallery') {
    					$image = "<i class='icon icon-picture'></i>";
    				}
    				else {
    					$image = "<i class='icon icon-link'></i>";
    				}
    			}
    
    			$excerpt = "";
    
    			if(!empty($post->post_content))
    			{
    				$excerpt =  "<br>".char_trim(trim(strip_tags(strip_shortcodes($post->post_content))),40,"...");
    			}
    			$link = apply_filters('kleo_custom_url', get_permalink($post->ID));
    			$classes = "format-".$format;
    			$output .= "<div class ='kleo_ajax_entry $classes'>";
    			$output .= "<div class='ajax_search_image'>$image</div>";
    			$output .= "<div class='ajax_search_content'>";
    			$output .= "<a href='$link'>";
    			$output .= get_the_title($post->ID);
    			$output .= "</a>";
    			$output .= "<span class='search_excerpt'>";
    			$output .= $excerpt;
    			$output .= "</span>";
    			$output .= "</div>";
    			$output .= "</div>";
    		}
    	}
    
    	$output .= "<a>".__('View all results','kleo_framework')."</a>";
    
    	echo $output;
    	die();
    }
    
    
    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: Live Search Members #30685
     sharmstr
    Moderator

    +1 This is needed. While I like that you can target content searches while within the specific component, making users navigate there is not ideal.

    Its been suggested here https://archived.seventhqueen.com/forums/topic/kleo-features-requests/page/2/#post-20300 and I believe somewhere else that I cant find at the moment. I also think I remember the kleo team saying that they were working on it.

    Hmmm. Maybe I’ll try hacking while I finish my coffee.

    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: video thumbnail #30683
     sharmstr
    Moderator

    For video posts, you dont set the video in ‘featured image’. You set it in “Theme General Settings”. See attached. It shows an example of a youtube video, but there are boxes there for your self hosted videos as well.

    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: [Re] Activity Page sidebar problem. #30682
     sharmstr
    Moderator

    @ahd904 I should mention that buddypress-function.php contains a lot of code that will probably be changed with each Kleo update. If you choose to do what I’ve suggested, you’ll have to remember to copy the updated buddypress-funtions.php file back over to your child theme and make the edit again. Not ideal, but hopefully the Kleo team will agree with us and the change will be part of the core moving forward 🙂

    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: [Re] Activity Page sidebar problem. #30681
     sharmstr
    Moderator

    I see what’s going on. I’m not sure if the 7th Queen intended this, but in the page layout code, they are only checking to see if they are displaying the activity component, but not where. I couldn’t figure out a clean way to do this, so the easiest way for you to do this is copy /kleo/buddypress/buddypress-functions.php to your child theme, then edit the ‘kleo_bp_change_layout’ function. It should be on line 1534.

    Within that function you’ll see where it checks for the activity component

    COPY CODE
    
    elseif (sq_option('bp_layout_activity', 'default') != 'default' 
    	&& bp_is_current_component( $bp->activity->slug)) {
    	$layout = sq_option('bp_layout_activity', 'right');
    }
    

    change it to this

    COPY CODE
    
    elseif (sq_option('bp_layout_activity', 'default') != 'default' 
    	&& bp_is_current_component( $bp->activity->slug) && !bp_is_user()) {
    	$layout = sq_option('bp_layout_activity', 'right');
    }
    

    All I did was add ‘&& !bp_is_user()’ to tell it to ignore the activity layout setting and use the default buddypress layout setting if the activity is within the buddypress member screen. So if you have your default set to ‘full width” it will display the activity stream on the members page to ‘full width’.


    @abe
    : Couple of things

    1- As stated above, I’m not sure if the way kleo currently handles the activity layout is what you guys wanted, but I think it makes more sense to have the activity in the member page follow the member layout setting.

    2 – My code above it probably not ideal, but it fixes his problem. I think it misses a few checks to work in all set up scenarios. I didnt full test it.

    3 – I tried to do this within functions.php by removing the ‘kleo_bp_change_layout’ filter and adding my own custom filter with a ‘custom_kleo_bp_change_layout’ function. The problem is that in your ‘kleo_prepare_layout’ function, you are getting the layout function name from the sq_option name which is ‘kleo_bp_change_layout’ so it will always look for that function instead of my custom function. Hope that made sense.

    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: newbie mess up manipulating parent theme #30587
     sharmstr
    Moderator

    Yep. You’re all set. Its always a good idea to backup before updating. BUT…. The whole point of using a child theme is that its update safe. If you look at the files contained in the child theme there are only 2 to start with. That’s because wordpress really uses parent kleo even though you have the child active. So, when you update kleo, it updates the files in the parent kleo and none of the child files. Unless of course you make the mistake of copying the kleo child files located in the update over to your server. NEVER DO THAT 🙂 If you set up “Theme Update” in kleo child, it will update parent kleo for you. No uploading of files needed, except for updated plugins like VC and Rev Slider. Also, when you update Kleo, you’ll be asked if you want to activate it. DONT 🙂 Keep kleo child active.

    While we are on the subject, here’s some other things to note. After you get the hang of things, you’ll probably want to start customizing the theme a bit. Those changes, as you know, go into kleo child. Some will be as simple as adding some custom css to style.css. Others will be copying over template pages. Like I said, you start with only 2 files in your child theme. My kleo child contains 68 files (not to mention the 1000+ lines of code in my functions.php file) 🙂 I hack everything. I can’t help it. While, this is not necessarily a bad thing, it can be a bit of a nightmare when you update. Remember, when you update kleo, its updating the parent theme, not the child. So if there is an update to a template page that I have copied over to my child theme, those updates will not take effect. Essentially what I have to do is compare those 68 pages to the corresponding 68 pages in the latest update to see if there is something I need to add or change.

    My suggestion for you is to keep custom changes to a minimum and learn to live with the way kleo display things or be patient a wait for the kleo team to change something you want changed.

    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: Shortcodes for stats #30581
     sharmstr
    Moderator

    That would be great, but I’m not sure that I’d use it… maybe others will. I’m working on one that will get posts counts by type. I’ll be posting it here when I’m done. I’m just modifying your forum stat shortcode so you guys can probably add it to k-elements if you want. We’ll 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: 'btn' added to kleo button extra class name #30567
     sharmstr
    Moderator

    Thanks!

    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: 'btn' added to kleo button extra class name #30565
     sharmstr
    Moderator

    Just double checking. The version attached still says 2.0.1. Did you upload the wrong version or did you just not change the number?

    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: Coloured featured icons #30536
     sharmstr
    Moderator

    They are just fonts, so use color

    COPY CODE
    
    .icon-megaphone:before {
    color: red;
    }
    

    obviously change .icon-megaphone to whatever icon it is and color to whatever color 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: Portfolio Issues #30526
     sharmstr
    Moderator

    bump

    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: 'btn' added to kleo button extra class name #30524
     sharmstr
    Moderator

    bump

    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: personal activity missing after Kleo update #30522
     sharmstr
    Moderator

    I can see your personal activity.

    I cant check the attach or post update buttons since I dont have an account.

    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: pagination not working on first topic page #30512
     sharmstr
    Moderator

    It actually is working as far as the number 3 missing. Its supposed to be missing. The reason it doesnt make sense is because the “…” bubble is in the first position and not between 2 and 4. I was a bit confused at first too because when you are on page 2 or 3, all the numbers show. But this is only because you have a total of 4 pages. If you had more pages then it would have been easier to see that it wasnt missing pages, but that the dots were in the wrong place. The screenshot shows it better than I can explain it.

    The default css has “.bbp-pagination-links a” set to float: none and the “…” is set to float: left, making it move before the numbers even though the page isnt parsed that way. Here’s the fix.

    COPY CODE
    
    .bbp-pagination-links a, .bbp-pagination-links span {
    float: left;
    }
    
    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: Group Avatars #30510
     sharmstr
    Moderator

    That’s a two part answer

    Size: That’s a BuddyPress function. They have instructions for that https://codex.buddypress.org/getting-started/guides/customizing-buddypress-avatars/ The issue you’ll run into is wanting to do it for groups and not for members. You’ll have better luck asking over in the Buddypress forum

    Square: You’ll have to add some custom css to your child theme. This might not get all instances of the group avatar, but try this for the group directory.

    COPY CODE
    
    
    #buddypress #groups-list .item-avatar {
    border-radius: 0 !important;
    }
    
    #buddypress #groups-list .item-avatar.rounded img {
    border-radius: 0;
    }
    
    
    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 and Membership #30509
     sharmstr
    Moderator

    Appearance – > Menus. Make sure Kleo is turned on in screen options (upper right hand side). Add My Account and Login to your menu. Save.

    Some screenshots in this topic https://archived.seventhqueen.com/forums/topic/how-to-get-the-profile-picture-in-main-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: Disabling breadcrumbs on Woocommerce pages #30503
     sharmstr
    Moderator

    I see your point. Add a feature request. In the meantime

    COPY CODE
    
    
    .main-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: Live search is killing BBPress @abe #30497
     sharmstr
    Moderator

    That was fixed. Clear your cache for this forum and all will be well in the world. https://archived.seventhqueen.com/forums/topic/cant-get-to-submit-with-long-topic-suggestion-list

    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: Disabling breadcrumbs on Woocommerce pages #30494
     sharmstr
    Moderator

    That’s the title section. Breadcrumbs are generally located within the title section. So hiding breadcrumbs will not remove or hide the title section. Hide title, breadcrumb and information.

    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 can I display seletected group? #30490
     sharmstr
    Moderator

    There is no set way of doing that within Kleo because there is no option for it in Buddypress. It will take some custom coding. You should ask over on the Buddypress forum or do a google search.

    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: Disabling breadcrumbs on Woocommerce pages #30488
     sharmstr
    Moderator

    😀 mark resolved please

    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 - 10,641 through 10,680 (of 11,328 total)

Log in with your credentials

Forgot your details?