BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #52403

    Hi Benny,
    Thank you for the question/suggestion.

    The plugin does not support it. You can edit the template to achieve it. It’s a good suggestion and we will be happy to have something in our future version(after thinking about how we will deal with the existing sites).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #52397

    Hi Meline,
    I am sorry but I am not aware of any way to get BuddyPress/BuddyBoss profile fields via acf.

    You will need to add the field name in the shortcode to make it fetch.

    All the data is relative to user. First, you need to determine whose profile data you are fetching logged in user or displayed user or someone else.
    For logged in/displayed, you can pass context=logged or context=displayed
    Here is an example:-

    
    [bpsc-profile-data field="1" context="logged"]
    

    Should display the name. You can access the field id/name from BuddyBoss->Profiles screen in the backend.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #52391

    Hi Jasmina,
    Thank you for the reply.

    Please ensure that your wall gallery is marked public too. I believe, you haven’t updated that(from your profile->Gallery->Wall Gallery->Edit)

    Let me know if you have already done that too?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #52390

    You are welcome.

    Please check with Fluent Forms to see if the support mapping of BuddyPress/BuddyBoss fields.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #52389

    Hi Benny,
    Welcome to BuddyDev.

    I am sorry, the plugin does not have an option for it.

    you will need to use the following snippet

    
    
    // Limits MediaPress group gallery creation to site admin and group admin.
    add_filter( 'mpp_user_can_create_gallery', function ( $can_do, $component, $component_id ) {
    	if ( 'groups' !== $component ) {
    		return $can_do;
    	}
    
    	if ( ! is_super_admin() && ! groups_is_user_admin( bbp_get_current_user_id(), $component_id ) ) {
    		$can_do = false;
    	}
    
    	return $can_do;
    }, 10, 3 );
    
    

    If you are using any code snippet manager, please add it it them. Otherwise, Please put it in your theme’s functions.php.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #52388

    Hi Melanie,
    Welcome to Buddydev support forums.

    1. BuddyBoss profile fields does not store data in user meta. They are stored in custom table. You may not use meta key with elemntor for this.

    The solution is to use BuddyPress/BuddyBoss specific shortcode.

    Here is an example plugin that adds the profile data shortcode for BuddyPress/BuddyBoss.

    https://github.com/buddydev/bp-shortcodes

    For usage, Please see this post:-
    https://buddydev.com/support/forums/topic/xprofile-field-shortcode/#post-46106

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #52387

    Hi Cheryl,
    I am sorry for the experience.

    Is there a chance that you are using regular expression in the banned domains? or Is there any other restrictions plugin active?

    Please share me a screenshot showing the list of banned domains and the email used for registration.

    I will assist asap.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #52379

    You are welcome.

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #52378

    Hi Richard,
    Thank you for the question.

    Our birthdate field is actually a BuddyBoss/BuddyPress “Date” field. If you are able to link a date field with Fluent Form, you can use the same for the birthdate field.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #52375

    Thank you Amos.