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: Something about : BuddyPress Group Tabs Creator Pro #27311

    Hi,
    Thank you for the topic and the suggestion.

    It is not possible currently. Also, BuddyPress team is planning to have the xprofile like functionality for group in near future, so that will not make much sense.

    I do plan to provide a way in future to create/save dynamic data but that will be mostly for contents(backed by post type) not by a custom profile field.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi J,
    Thank you for the post.

    This is an expected behaviour.

    You are copying an expirable url and using it for a tab. The url expires and that’s why this message is shown.

    In case of BuddyPress/WordPress, any url that contains nonce will expire if a user loges in/logs out or a different user accesses it.

    These are not for reuse. The group join link is not a static link, It uses nonce and that’s why you are seeing the error. There is no workaround.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: [Resolved] Avatar full width on mobile only #27306

    Hi Carsten,
    Thank you for the question.

    Media query is your best option here. BuddyPress only recognizes thumb/full,so you can only specify these 2 sizes.

    You may use wp_is_mobile() is php code and show full image there instead of the thumbnail. If you are not comfortable with php, using media query seems the right solution.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: [Resolved] Buddypress and Google #27305

    Hi Nik,
    Since you have made these pages private, There does not seem to be any issue with search engines.

    Right know, unless you are adding the BuddyPress pages explicitly(profile/groups) to the sitemap(using BuddyPress specific plugin), they are not even added by the popular seo plugins. So, I do not see any harm.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Propertytips,
    Thank you.

    I am glad that it worked.

    Thank you for sharing for others. It will certainly help.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Charles,
    Welcome to BuddyDev.

    1. We do not have a way to do it. If you limit your WordPress default upload size, that will aplly to the BuddyBlog too.

    2. I am sorry but currently there is no way. We are using the WordPress uploader, so the restrictions needs to applied on that. We may implement something in future.

    3. We may be able to do it. I will explore a bit and see that it does not prevent showing current upload in the list. We can add a filter to enable it then.

    PS:- In future, Please open a new topic for discussion. That will help us organize the forums better.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Daniel,
    Thank you for the question.

    It’s a good idea but I do not see a solution that exists. reason, any such solution will need to be able to send a lot of emails which might not be feasible on shared servers and limited mail queues by some of the hosting.

    Currently, there does exist a solution for sending daily group activity digest via email
    https://wordpress.org/plugins/buddypress-group-email-subscription/

    You might be already using it, if not, please give it a try.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Propertytips,
    I am sorry to have kept you waiting for this.

    1. Please apply one line change to your current MediaPress as shown here
    https://github.com/buddydev/mediapress/commit/164e649deabffe963ab76d2dd93aa7653779751f

    2. Please put this code in your bp-custom.php or theme’s functions.php

    
    
    add_filter( 'mpp_file_upload_enabled', function ( $enabled, $context ) {
    
    	if ( 'gallery' !== $context ) {
    		return $enabled;
    	}
    
    	$gallery = mpp_get_gallery();
    	if ( $gallery && 'video' === $gallery->type ) {
    		$enabled = false;
    	}
    
    	return $enabled;
    }, 10, 2 );
    
    

    That will make sure that only links can be added for video gallery.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Carsten,
    Thank you for sharing the reason.

    Yes, lazy load plugins are known to have conflict with avatar cropping/changing.

    About Jetpack:- If I get a say, I will not use it. It might be good for some use cases but you won’t be using most of its functionality and you can find the lighter alternatives already. Also, Whenever I tried it(not recently), It slowed the site a lot.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Giulietta,
    Happy New Year and Welcome back!

    I am sorry but the plugin will not work on shared hosting. For transcoding, we need extra software like FFMPEG.

    I guess that means, the answer is “No” in this case.

    Regards
    Brajesh