Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: Filter for specific members type in the members loop #25412

    Hi,
    Are you able to use bp_has_members in your loop? Can you please post the line you are using for it and I can share the updated version of that with you.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Eric,
    Is there any chance you are not using BuddyBlog but using Blog categories for groups plugin? If you publish from a group, It will add the blog post to that specific group’s activity stream(gets added to only 1 goup’s stream).

    I do not see any other way.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Johan,
    Thank you for the update and the translations. I will add them in future release.

    For the conflict with BuddyPress Auto Activate Auto Login and the registration option. Do you want me to remove that option from the users screen or can you please tell me how will you like these two plugins to work together(the workflow).

    I may be able to add the compatibility.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: Uploading Pic on Activity not working anymore #25399

    Hi Daniel,
    I am sorry but I don’t understand the issue on desktop. Will test and get back to you by tomorrow.

    For icon, you can use the following tutorial to override them.
    https://buddydev.com/mediapress/mediapress-basics/overriding-mediapress-activity-upload-icons/
    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Kir,
    Sure.
    You can copy it from here

    
    wp-content/plugins/mediapress/templates/mediapress/default/gallery/manage/upload-form.php
    

    and put it in

    
    wp-content/yourtheme(replace it)/mediapress/default/gallery/manage/upload-form.php
    
    

    You will note a function

    
    mpp_upload_dropzone()
    
    

    there. Please comment it out and it will go away form gallery uploads.

    For activity, we don’t have a template override(an oversight on my part, fixing in next update). For now, you will need to modify this function

    
    mpp_activity_dropzone()
    

    to get rid of the dropzone.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Eric,
    Please put this javascript in your js file(or cusotm code [plugin if that allows it)

    
    (function ($) {
    	var tabSelectors = ['#activity-groups-li', '#home-groups-li' ];
    
    	$(document).ready(function(){
    		if( ! tabSelectors.length){
    			return;
    		}
    		
    		var allItemsSelector = tabSelectors.join(',');
    
    		$(allItemsSelector).each(function () {
    			$(this).addClass('no-ajax').find('a').attr('target','_blank').addClass('no-ajax');
    		});
    	});
    
    })(jQuery);
    

    Change the ids of the tab in this line with your own

    
    var tabSelectors = ['#activity-groups-li', '#home-groups-li' ];
    

    Or you can point me to the site and tell me which tabs and I will provide the updated list of tabSelectors.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: Brajesh – I forgot one question! #25396

    Thank you Cindy. Appreciate the kind words.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: [Resolved] Tab Slug is Dynamic! How to map this tab? #25395

    Hi Cap,
    I finally checked it today.

    The tab is not actual BuddyPress tab. It is a link to another page. The plugin can not modify it. The plugin can only modify the tabs which link to something like this(http://example.com/members/xyz)
    the tab does not link to a component but rather to a non BuddyPress page on the site.

    You will need to contact WCFM developers to modify the url.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: Registration filds #25394

    Hi Cap,
    Thank you for the question.

    I do not see a proper solution available. I do see that there are options to allow the reverse(sync BuddyPress field to WordPress User meta) like this
    https://wordpress.org/plugins/bp2wp-full-sync/

    But there are no plugin currently available to od it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: Filter for specific members type in the members loop #25393

    Hi,
    Thank you for the question.

    Since you can not use the shortcode and you are creating a different page/loop, your best option is to use
    member_type__not_in or member_type__in option in the bp_has_members()
    You can specify one or more member type to exclude or include.

    Regards
    Brajesh