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: 25365
    Brajesh Singh on in reply to: Conflict with Conditional Profile Fields #34788

    Hi Gino,
    Thank you for the details.

    Please link to the site and I will check quickly. I do not need FTP currently. If required, I will let you know.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: Custom Field Picture Type #34787

    Hi Adrian,
    Thank you for the post and the question.

    1. No. It is not feasible currently.
    2. If you are referring to dimension, you may use css(it is not the best solution though)
    3. You may do so via CSS

    Please link me to a profile page and I can assist with the 3rd one.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: how can change dimension of video #34785
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25365

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

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

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

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

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

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

    Regards
    Brajesh