Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 326 through 350 (of 4,122 total)
  • Author
    Search Results
  • #310513
    shanebp
    Moderator

    BP does not use user_meta in the profile fields.
    To set BP profile fields use xprofile_set_field_data.

    olivier83
    Participant

    Hello,
    I’m using a plugin to create forms and registration forms on my WordPress website.
    It’s WP Fluent Form Pro.
    I want to fill the extended profile fields of buddypress from the registration forms I create with the plugin.
    The support of the plugin says that I can use the user meta for passing other inputs to BuddyPress fields. They don’t want to help me more claiming that I have to find the solution by myself…

    My issue is that I don’t find any User Meta in the extend profiles of buddypress. Where can I find them?

    Thank you for your help.

    GAP Webmasters
    Participant

    I think you can use the extended profiles and add custom groups and fields to do this, no?

    #310303
    discoverearth
    Participant

    Hey
    I agree with you 100%. Buddypress onboarding needs some additional plugins.

    There is a plugin that allows users to choose groups they want to join as part of the signup Process.

    But we also need a better solution for profile fields.

    What was the buddydev plugin you used to redirect to profile after registration?

    #310266
    lwadz88
    Participant

    Hello,

    I was wondering if there are any solutions for non-developers to create custom profile fields for the buddypress group. Basically I want to add custom fields so that every group that is created by users has them. I tried BP Group Extras, however this has way too much front end work to be useful for someone just wanting to use the website. I need to be able to present exactly the information I want at group creation and have it show up on the group home page.

    Thanks!

    #310248
    nithesh123
    Participant

    <label> Name *
    [text* your-name default:user_display_name] </label>

    <label> Email *
    [email* your-email default:user_email] </label>

    <label>Mobile Number *
    [text* number default:field_31]</label>

    <label>College *
    [select* institution include_blank “MNNIT Allahabad” “AVV Coimbatore” “IGDTUW Delhi” “IIITM-K Trivandrum” “IIT (BHU) Varanasi” “TAT Bhubaneswar” “Other”]
    </label>

    <label>College Name (if other, enter your college name)
    [text othercollege]</label>

    Name and Email, I have taken default values like this. It works fine.
    But mobile number, college, other college data, I want to take it from additional profile fields that I have added from the user registration form to this contact form.

    #310214
    nanomania
    Participant

    Good, I do not know if they have already found something but I can indicate some plugins, for the topic of member filters it has this plugin, but I think it does not perform conditional logic but uses all the fields you want for filters

    BP Profile Search

    then if you want conditional logic in the buddypress log fields you have this plugin

    Conditional Profile Fields for BuddyPress

    m4soN
    Participant

    Hi there,

    i am using Events Manager and have one specific custom user field i’ve implemented in my registration from for our events. This field i also need to see in the related user profile afterwards.

    How can i achieve this?

    #310167
    calumjoyce
    Participant

    I want to know whether you are able to rearrange the tables are shown on the profile pages. For example if I had a description, an email address and a telephone number as my profile fields, I may want to telephone number and email on one side and the description on the other.

    Is there a way to jump into the files (I am using a child theme) and move the code around so it displays differently on the front end?

    Any guidance would be appreciated.

    aronasoft
    Participant

    I need you to build a system where we can verify the license of each dental professional and we are using https://data.wa.gov/Health/Health-Care-Provider-Credential-Data/qxh8-f4bd) API to verify license.

    We are getting three fields from API i.e license No, Licence Type and Licence status and we would like the same information displayed on their Buddypress profile page.

    #309940
    andrewpiana
    Participant

    heavily requested features by BuddyPress users was the ability to add Repeater Fields or Repeater groups of fields dynamically to BuddyPress Profile, without having a predefined number
    Official Site

    jasonsharp
    Participant

    Hi I would like to alter the registration profile fields to be instead First Name and Last Name rather than the single Name field. I would then want the Name Field to go away and have First Name and Last Name fields be primary. How can I do this?

    #309723
    Prashant Singh
    Participant

    Hi @dfcday

    I think you are looking for this solution https://buddydev.com/plugins/bp-non-editable-profile-fields/

    Hope this will help.

    dfcday
    Participant

    Hello BuddyPress Team,

    Is it possible to use an add-on to design the profile fields so that certain fields can only be changed by an admin?

    These should be shown to the user in the profile but should not be changeable by the user.

    Thanks for you work.

    Regrads Peter

    #309711
    indigetal
    Participant

    I’ve started these adjustments by first creating new profile fields for the headline and user location by going to BuddyBoss > Profiles > add new field, making a note of their id’s in the url. I then found a relevant tutorial on the Buddypress codex “Displaying Extended Profile Fields on Member Profiles” but it seems to be based on and older version of Buddypress. I found out some current hooks in the user profile header are bp_before_member_header_meta below the main display name and bp_before_member_in_header_meta below that. So I added the headline and user location, as well as the nickname/handle with this code based on the linked tutorial in my child themes functions.php file:

    add_action( 'bp_before_member_header_meta', 'display_user_nickname' );
    function display_user_nickname() {
    	$args = array(
    	'field' => 3,
    	);
    $user_nickname = bp_get_profile_field_data ( $args );
    if( $user_nickname ) {
    	echo '<span class="mention-name">@' . $user_nickname . '</span>';
    	}
    }
    
    add_action( 'bp_before_member_in_header_meta', 'display_user_headline' );
    function display_user_headline() {
    	$args = array(
    		'field' => 12,
    	);
    	$user_headline_copy = bp_get_profile_field_data ( $args );
    	if( $user_headline_copy ) {
    		echo $user_headline_copy;
    	}
    }
    
    add_action( 'bp_before_member_in_header_meta', 'display_user_location' );
    function display_user_location() {
    	$args = array(
    		'field' => 16,
    	);
    	$user_location = bp_get_profile_field_data ( $args );
    	if( $user_location ) {
    		echo '<br />' . $user_location;
    	}
    }

    With that, the headline and user location were added (I used a line-break to separate them the way I wanted it), but it left me with two instances of the nickname/handle: the pre-existing one and the new one that I just added. I tried to remove the pre-existing one using:
    remove_action( 'bp_before_member_in_header_meta', 'bp_displayed_user_mentionname' );

    That is exactly the function used to output the mentionname of a displayed user according to the documentation, but it didn’t work and I still would’ve had to figure out how to remove the span class and @ symbol that’s there too anyways. So I copied the file, \buddyboss-theme\buddypress\members\single\member-header.php, into my child theme and deleted lines 44-50:

    <?php if ( bp_is_active( ‘activity' ) && bp_activity_do_mentions() ) : ?>
        <span class=”mention-name”>@<?php bp_displayed_user_mentionname(); ?></span>
    <?php endif; ?>
    
    <?php if ( bp_is_active( ‘activity' ) && bp_activity_do_mentions() && bp_nouveau_member_has_meta() ) : ?>
        <span class=”separator”>•</span>
    <?php endif; ?>

    But to my eternal consternation, that did not work either! (yes I duplicated the same path)

    That’s where I’m currently standing:

    • I need to figure out if there is a hook to the right of the display name or just create one.
    • I need to figure out a way to remove unwanted meta that are currently there in the header – I’m a little suspicious that these are being generated in some kind of loop that remove_action doesn’t have any effect on (bp_nouveau_member_meta?). If so, I need to figure out how to add/remove meta from that loop instead of using add_ remove_ action hooks.
    • Once I do all of that I need to figure out if there’s a hook just below the user profile image and use that to move the “connect,” “follow,” and “message” buttons.
    • I will then need to locate the code that’s generating the cog icon for the user settings and copy/paste that into the hook to the right of the display name, floating right to place it in the upper right hand corner of the user profile header.

    It appears as though I’m really putting tech support over at BuddyBoss to the test with these requests, so I would really appreciate any suggestions if anyone has any to offer over here!

    Thanks!

    rj2580
    Participant

    Greetings,
    I have a very simple requirement where I would like to have a mobile/phone number field in the registration form which is doable by adding custom registration fields in Buddypress but, I want the mobile/phone number to have a unique meta key value so that no user can create a second profile with same mobile/phone number.

    Just like email has a unique meta key so that the user can have one account with one email ID, similarly, I would like to have mobile/phone number to be associated with only one profile.

    I don’t want to implement any 3rd party plugin for registration like Ultimatemeber etc as it ads a lot of pages too. I would like to have a small snippet or function to attain this.

    Any help would be highly appreciated.
    Waiting for the reply!
    Regard
    RW

    Wama Software
    Participant

    I want to make a custom page where user can edit his profile and save the profile same as edit profile page of buddypress,

    my idea here is to after user registration, when user login and if the required field is not filled then user will see a profile custom edit page with all the profile field as editable field, and
    Most important part is how to save those field values like images/ date and all

    #309601
    Lenny1975
    Participant

    Hi there,

    I must be missing something very obviously because I can’t work out however to download my users data from my site. For clarity, I need basic profile i.e. Name, email etc PLUS profile information i.e. job title, company etc.

    Can someone please tell me how to do this?

    Thank you

    #309594
    #309524
    Mathieu Viet
    Moderator

    Hi @chaddblanchard

    If you are using the BP Legacy template pack, you can follow @shanebp snippet available in response to this support topic: Display profile fields on members page

    It will also work on the BP Nouveau template pack, but it will be wrongly positioned. FYI, I’ve opened a ticket to fix this in next BuddyPress major version.

    You can also use a different strategy using the BP Template hierarchy. If you create a copy of the bp-templates/bp-nouveau/buddypress/members/members-loop.php into a buddypress/members/members-loop.php file of your theme (be careful to respect the relative path into your theme: create a buddypress folder, then a members one and finally put the members-loop.php copy inside this folder. From this copied file, you can modify the html layout to include specific code to display the profile field(s) of your choice.

    Here’s an example: https://gist.github.com/imath/67c2c5d961083bc8d4205860a2a075b2#file-members-loop-php-L44-L46 The specific code to add has a yellow background.

    #309518
    chaddblanchard
    Participant

    I’m looking to add additional profile fields to the member loop in the new BuddyPress Nouveau. I was able to do this in the legacy theme but can’t get it to work in the new theme. Anyone been able to do this?

    #309494

    In reply to: Add xprofile to user

    shanebp
    Moderator

    You seem to be assuming that the xprofile field id is the same as the user meta field id – if they are it is just a coincidence.
    If you have not created xprofile fields, you need to do so.
    And then use the ids for those xprofile fields.
    Or you can use the name of the xprofile field

    xprofile_set_field_data

    patilkavya
    Participant

    Hi,

    We are using the Miniorange SSO plugin for our Active Directory Sync. This sync populates our basic profile with First, Last, Display Name, Email, etc but that is it. We added an additional 4 attributes that we map from the MiniOrange SSO and we have confirmed these do get populated from active directory. What we are missing is how to map this info the appropriate fields in the Extended Profile in Buddy Press.

    https://today.nationallife.com/

    Could anyone of you please help me on this.

    supercavie
    Participant

    Hello Everyone,

    I use signup fields from buddypress on my registration site.

    I have a dropdown box field that I can with php populate data onto it with the use of the action xprofile_insert_field() which with an array can add data to the dropdown box by its parent id.

    I would like to do the exact opposite, i.e., having a parent id (dropdown box) delete data from it, but I can’t seem to find the proper action to it. The xprofile_delete_field only takes an id and would delete the entire dropdown box…

    Any ideas?

Viewing 25 results - 326 through 350 (of 4,122 total)
Skip to toolbar