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: 25490
    Brajesh Singh on in reply to: how can change dimension of video #34785
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Amir,
    Thank you for the reply.

    1. Member Types Pro 1.5.0 is for BuddyPress 7.0 or above. In BuddyPress 7.0, there is native UI for creating members types, we are moving our additional functionalities to it.

    2. Yes, within a week.

    3. The problem is we have use get_post_meta in some of the custom codes. These custom codes like above will stop working. Other than that, the plugin and its functionalities will work without any issue.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Hugo,
    Thank you for the patience.
    I am using Community Builder Pro 2.1.0 and WordPress 5.5.3.

    The media settings is available(it is only available when the block is selected), Please see the screenshot

    https://i.imgur.com/QimEnem.png

    Also, The video is working fine from me( I am using android phone for testing)
    https://i.imgur.com/HwsmNPI.jpg

    Please make sure you are using the Community Builder Pro 2.1.0 and other plugin/code is not affecting it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Timothy,
    Welcome to BuddyDev forums.
    I see that you have already purchased the plugin.

    Yes, The BuddyPress User Profile Tabs creator is compatible with BuddyBoss platform. You can control tabs by WordPress roles.

    We haven’t tried it with Geo directory addon. Please give it a try and let me know if you face any issue.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Amir,
    Please try this code

    
    /**
     * Remove associated groups when member type is removed.
     * It will not fire if member type is changed.
     */
    add_action( 'bp_remove_member_type', function ( $user_id, $member_type ) {
    
    	if ( ! function_exists( 'bpmtp_get_active_member_type_entries' ) || ! function_exists( 'ld_update_group_access' ) ) {
    		return;
    	}
    
    	$active_types = bpmtp_get_active_member_type_entries();
    
    	if ( empty( $member_type ) || empty( $active_types ) || empty( $active_types[ $member_type ] ) ) {
    		return;
    	}
    
    	$mt_object = $active_types[ $member_type ];
    
    	$group_ids = get_post_meta( $mt_object->post_id, '_bp_member_type_ld_groups', true );
    
    	if ( empty( $group_ids ) ) {
    		return;
    	}
    
    	foreach ( $group_ids as $group_id ) {
    		ld_update_group_access( $user_id, $group_id, true );
    	}
    
    }, 10, 2 );
    

    Please do note that this code may not work in BuddyPress member Types Pro 1.5.0 coming out this week(when we move away from post type).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Sotiris,
    Thank you for the question.

    BuddyPress does not restrict the profile view by roles. How are you restricting the views currently? Please let me know and I will assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490
    Brajesh Singh on in reply to: BuddyPress Auto Follow plugin #34771

    Hi

    @ravisharma
    has added the follow plugin support.

    We are working on the admin tools to allow running the friending/following actions for existing users. If we are unable to add that by end of the day today, we will release the plugin with Auto follow feature tomorrow morning.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Johan,
    Thank you for the prompt replies and confirming it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Johan,
    Sorry about that. It was a bug on our end. Please use 1.1.5 instead.

    Let me know if it works for you or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Johan,
    Thank you.

    Please upgrade to 1.1.4. It is exactly same as you have mentioned.

    Please let me know if it works or not?

    Regards
    Brajesh