Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'profile fields'

Viewing 25 results - 276 through 300 (of 3,908 total)
  • Author
    Search Results
  • #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?

    #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

    #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.

    #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

    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?

    #309459
    coolhunt
    Participant

    Hey guys,

    the problem…
    – when a user profile is being viewed the NAV that contains (‘profile, ‘activity’, etc..) are above the Profile Fields such as the name, etc..

    Is there a way to move the Profile Nav mechanism below the Profile Fields entries..

    #309244
    coolhunt
    Participant

    @ripulkr

    although BP works with any theme.. i often find myself add too much BP specific CSS tweaks in the customizer

    Im trying to keep things as simple as possible and even with twenty seventeen theme – there are some css tweaks that need to happen.

    it makes sense — simply because WP is “blog first” so most content is goofy on how it renders and presents BP pages.

    As far as I can tell buddyboss is the only game in town that does a great job of having clean design and straighforward code.

    my BP-Theme-wish list

    1) BP first *which focuses on great Activity page presentation, Members Directory Presentation & Great Member profiles.

    2) Mobile First approach would be super awesome. Most people view profiles and not necessarily doing actual “activity” post. So if someone can figure out a great way to render fast and beautiful activity/members-directory/member-profiles that is very readable on mobile it would be super awesoome.

    3) Great use of Menus/Accordions — The way BP works right now on members pages is TERRIBLE on mobile. You have scroll past the cover photo -> then pass the Avatar –> then pass 4 menu items to see any content of the users in the Members Profiles page.

    4) Great use of Member Profile Fields — I think by default as a “2 column table layout” to render the profile fields is not great.

    **I totally understand that the newest release of BP has interesting pre-built options but even with the default twenty-twenty theme it doesnt look great.

    Some thoughts..

    — The username in the profile page when too long looks weird and awkward — using CSS to ‘breakword’ is OK.
    — The Profile Field Name should be studied on how to render that well..
    — The Profile Field entries like (text fields, radial buttos, list, etc..) should have a better readable standard implementation like.. *This one is hard because you dont know the exact uses of each unique BP installs..
    — The Menus should be “slidable” on mobile so that the user doesnt have to scroll all the way down to start reading whats on that persons profile.

    *** It would be great if someone (some BP expert) post an Ultimate BP/CSS guide that shows how to target each of the BP specific elements… without doing theme surgery.. like a cut&paste into the CSS customizer –BONUS if it can include media queries 🙂

    anyway.. rant over..

    #309158
    caaprichos
    Participant

    Hello! I am creating a social network with buddypress 5.0 and last wordpress update with the theme went and Seventeen Version: 2.2 and I am creating custom fields and I need to put photo gallery and video in the custom profile fields for the professional profile and the user profile! Is there any way or plugin that can put photo and video gallery? Please help

    #308968
    nushara
    Participant

    Ok so I have added xProfileFields now and was able to have a color picker in place.

    Can someone tell me, where and how I would have to load that hex value now, to make css changes to the users profile?

    Would be great if someone could get me on the right track 🙂

    #308955
    buci
    Participant

    Hi buddy, have you found a solution? I’m stuck with a similar issue.
    I have been using a plugin to export buddypress members and xprofile fields and it is no longer working since 7 november. i cant find another plugin to export the members data.. anyone can help?

    #308845
    vsimm63
    Participant

    I’m having a similar problem. How do I enable profile fields inside buddypress settings?

    #308778
    joaoaurelio
    Participant

    Solved by enabling profile fields inside buddypress settings

    #308656
    mekcas
    Participant

    Hi. I am currently using Buddypress version Version 5.0.0 with wordpress version 5.2. my current theme is twenty nineteen. the issues was, I created a different profile fields group:
    field group 1: Base(Primary)
    field group 2: Section A
    field group 3: Section B

    I try to makes all field appear in one page but only field group 1: Base(Primary) appeared. how can I add/include all field in one page? Thank you

    #308576
    nathan913
    Participant

    One of the 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

    #308555
    Mathieu Viet
    Moderator

    Hi @pixieblitz The most simple way is too put all your fields into the default profile tab from the fields WP Admin.

    You can probably list all fields on the edit screen on the front-end overriding the template from your child theme. You should have a look at https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/

Viewing 25 results - 276 through 300 (of 3,908 total)
Skip to toolbar