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: 25337
    Brajesh Singh on in reply to: Get a cover image automatically for a video like YouTube #25416

    Please do not change the whole function. Just comment one line out.

    From the original

    
    <?php mpp_upload_dropzone('activity');?>
    

    to

    
    
    <?php //mpp_upload_dropzone('activity'); ?>
    
    

    That should do it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    Brajesh Singh on in reply to: Buddypress anonymous activity support #25415

    Hi Tosin,
    I am sorry but the plugin is not intended for this purpose.

    The plugin allows users to go anonymous while writing new activity post/comment. It does not allow you to mark a user as anonymous.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337

    Hi Johan,
    Thank you for reporting.

    The integration is provided by us, so we will need to update and not Andrea.

    At the moment, I don’t see a proper solution. I will need to check and see if we can allow you excluding some member types.

    Please do note that directory availability of a member type has no bearing on the all list They are unrelated.

    Will putting a filter to allow you exclude some values work for now?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    Brajesh Singh on in reply to: [Resolved] Hide member list/page from specific users #25413

    No Issues.

    Please remove these line

    
    bp_do_404();
    load_template( get_404_template() );
    exit( 0 );
    

    and replace them with

    
    bp_core_redirect( "http://yoursite_url");
    
    

    That will do it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    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: 25337

    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: 25337

    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: 25337
    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: 25337

    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: 25337

    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