Search Results for 'profile fields'
-
AuthorSearch Results
-
February 2, 2013 at 8:51 pm #152242
In reply to: URGENT!!! PLS HELP -> Add new users from admin
ebraxton30
ParticipantBenzine,
I am searching another issue and see your issue and thought I may provide a solution because I ran into the same issue. I couldn’t see any way to change or alter user profiles after entered. I couldn’t see the fields which you think would be an easy thing, but highly annoying to learn that I couldn’t. A solution…
I am using the Gravity Forms plugin. The problem is, the plugin is $50, but the only way to get their user registration add-on is to purchase the developer edition which is $200. It works with Buddypress and User Registration very nicely. You can go through your Gravity Form entries and make all of the edits to user profiles that you need. I wish I knew of a less expensive solution, but Gravity Forms is a nice plugin and I’m sure you will find other uses for it on your site!
February 2, 2013 at 8:49 pm #152241In reply to: URGENT!!! PLS HELP -> Add new users from admin
ebraxton30
ParticipantBenzine,
I am searching another issue and see your issue and thought I may provide a solution because I ran into the same issue. I couldn’t see any way to change or alter user profiles after entered. I couldn’t see the fields which you think would be an easy thing, but highly annoying to learn that I couldn’t. A solution…
I am using the Gravity Forms plugin. The problem is, the plugin is $50, but the only way to get their user registration add-on is to purchase the developer edition which is $200. It works with Buddypress and User Registration very nicely. You can go through your Gravity Form entries and make all of the edits to user profiles that you need. I wish I knew of a less expensive solution, but Gravity Forms is a nice plugin and I’m sure you will find other uses for it on your site!
February 2, 2013 at 8:24 pm #152238In reply to: Adding custom profile fields to Member Profile
ebraxton30
ParticipantI finally figured this out. I am using Gravity Forms user registration plugin to work with my Buddypress theme. My field names varied slightly between the custom profile field name and what I put on the user registration form. I realized that I must use field name as it is entered in the WordPress Custom Profile Field.
I do have one question…I would like to display the field name as well as what was entered in that field. For example, this site is a cancer site and users will enter their type of cancer. I would like it to read “Type of Cancer: Breast” rather than “Breast”
Any suggestions?
February 2, 2013 at 7:35 pm #152237couchdavid
ParticipantOkay, I feel like this one should work, but it’s showing not really making anything happen…
in my bp-custom file (lifted heavily from John James Jacoby’s informative post here: https://buddypress.org/support/topic/calling-specific-profile-fields-individually/#post-55905):
In my edit.php file, I replaced “bp_get_current_profile_group_id()” with the custom_position function
Thanks again!
January 31, 2013 at 4:42 pm #152126Tux Kapono
ParticipantHow does one unresolve an issue? I’m actually worse off than I was 🙁 Rather than have secondary fields appear only on the profile page, they’re not appearing anywhere at all.
January 30, 2013 at 9:26 pm #152104Tux Kapono
ParticipantI actually want to keep the registration page as is, otherwise it’s too overwhelming. It’s the profile page that I want the secondary group fields to show up on.
January 30, 2013 at 9:22 pm #152103In reply to: xProfile visibility and Members directory search ?
Slava Abakumov
ModeratorI’m definitely sure, that fields visibility should be taken into consideration.
So in your case – user should NOT be visible in a search results by logged out user.January 30, 2013 at 9:17 pm #152101omgbud
ParticipantAdd those secondary group fields you need to the base group so it will shows up on the registration page?
January 30, 2013 at 6:32 pm #152074Tux Kapono
ParticipantActually, how does one get the secondary profile field group to show up in the member’s profile area, ideally on the same page as the base group? It’s only showing the base group on both the registration page (desired) and the profile page (needs both).
January 30, 2013 at 3:57 pm #152062Tux Kapono
ParticipantThanks @mercime!
January 30, 2013 at 3:29 pm #152059@mercime
Participanthttps://codex.buddypress.org/legacy/configuring-components-v1-6/#users-profile-fields
Only add the profile fields you want during registration on the base group. Add new Profile Field Group/s for the fields you want the members to fill in later.
January 29, 2013 at 10:05 pm #152019In reply to: Adding custom profile fields to Member Profile
Danny Albeck
ParticipantThat worked like a charm! Now I have a question.. this is my code:
Belt Level: echo xprofile_get_field_data(‘Belt Level’ , bp_get_group_member_id() );
I have in this profile drop down field about 10 choices. Is it possible to somehow have this output assign a dynamic class or id pending on what your Belt Level is? I want to display this a color block with some css rather then just text on the screen.
Thanks!
January 29, 2013 at 4:46 pm #151995January 28, 2013 at 6:37 pm #151885In reply to: bp_profile_field_data( ‘field= … doesn’t work
mlabrooy
ParticipantHi I am trying to display members telephone#s in the members directory using bp_profile_data_field and I was able to get the email but I was not able to get the telephone number for some reason.
I used bp_member_profile_data(‘field=31’); which I made under user profile fields.
But it still did not work. For the email I used the same exact syntax bp_member_profile_data(‘field=30’) and it worked for me.But the phone number I am having trouble with.
Any advise on how to do this would be helpful.Running the latest version of WP/BP
January 22, 2013 at 10:44 pm #151515In reply to: Removing User name from profile url
modemlooper
ModeratorLike I said, nothing to do with BuddyPress. Connect plugins do not use WP or BP fields for the information. They get it all from the service that is being connected to. Message the developer of the connect plugin about this issue.
January 22, 2013 at 9:17 pm #151506In reply to: Adding custom profile fields to Member Profile
danbpfr
ParticipantIs working on members list page but not on group members list page.
To get a profile field value on the group member page (BP 1.6.3 tested), use this:<code><?php echo xprofile_get_field_data( ‘the_field_name‘ , bp_get_group_member_id() ); ?></code>
Take care, the the_field_name is case sensitive.
January 22, 2013 at 4:53 pm #151476In reply to: Segregated X-Profile Fields for Multisite
asdorff
ParticipantI’ve just done as discribed in article but it doesn’t work. Profiles still the same for all the Network…
I’ve created the ‘bp-custom.php’ in ‘\wp-content\plugins\’, added there the code from the article in documentation ‘Segregated X-profile Fields for Multisite’ but nothing happened…
I don’t understand what means Add the following code to a functionality plugin network activated on your multisite install…
January 22, 2013 at 4:31 pm #151471In reply to: Segregated X-Profile Fields for Multisite
asdorff
ParticipantThanx, modemlooper. I just didn’t find it with search. I’m novice yet. So, thanx for reply. I’ve read the article and start to try.
January 22, 2013 at 3:58 pm #151464In reply to: Segregated X-Profile Fields for Multisite
January 22, 2013 at 4:01 am #151406In reply to: Adding custom profile fields to Member Profile
modemlooper
ModeratorWorks for me. Make sure you are writing the field name exactly as it is. name does not equal Name.
January 22, 2013 at 2:34 am #151398In reply to: Adding custom profile fields to Member Profile
ebraxton30
ParticipantThat didn’t work either. I just am stumped.
January 22, 2013 at 1:22 am #151393danbpfr
ParticipantJanuary 22, 2013 at 1:21 am #151392In reply to: Adding custom profile fields to Member Profile
danbpfr
Participanttried on /groups/single/members.php 1.6.3
none of the solutions are working !
January 22, 2013 at 12:08 am #151386In reply to: Adding custom profile fields to Member Profile
modemlooper
ModeratorThe example may have broke and needs a refresh, try this:
echo bp_member_profile_data( ‘field=Name’, bp_get_member_user_id() );
January 21, 2013 at 9:22 pm #151367In reply to: Adding custom profile fields to Member Profile
ebraxton30
ParticipantNo. it blanked out the screen.
-
AuthorSearch Results