Search Results for 'profile fields'
-
AuthorSearch Results
-
April 14, 2015 at 10:03 pm #237889
In reply to: FYI: Plugins to Lock BuddyPress Profile Fields
bp-help
ParticipantApril 12, 2015 at 6:10 pm #237756In reply to: Create Custom Page of Registration
danbp
ParticipantYou said first:
I would like to create a page for user registration and another page for editing the profile with more options.This is a resume of how BP already works.
The registration page can be extended (BP xprofile component) and user can fill out these additionnal fields from within their profile page.Please take a look on Codex, before reinventing the wheel.
April 8, 2015 at 12:57 pm #237479In reply to: [Resolved] Only display custom field if not empty
mrgiblets
ParticipantA quick follow up question…
Can I echo the xprofile_get_field_data fields elsewhere in WordPress (outside of Buddypress) in the same way?
ie :
$location = xprofile_get_field_data( 'Location', $user_id ); echo $location;Obviously replacing user_id with the numeric user id.
April 8, 2015 at 12:33 pm #237478In reply to: [Resolved] Only display custom field if not empty
mrgiblets
ParticipantSuperb, thank you @danbp!
Not only answered my question but this also gives me the fundamentals to implement further ideas I have for my BP site like displaying profile fields based on user roles.
Cheers đ
April 8, 2015 at 11:27 am #237469In reply to: Custom sort members
danbp
ParticipantThat is also explained, with filter example, on the member loop codex page !
See Filtering by Xprofile fields.
April 7, 2015 at 11:39 pm #237428danbp
ParticipantI told about BuddyDrive because you have a download button aside a description written in french. And that plugin author is french, like me. And i’m a user of this plugin….
You use a premium theme, and we can’t help you much here if you have an issue with it. As we have no free access to it’s code.
As site admin, you can configure the registration form and add some description if you need some near a field.
Go to dashboard > users > profile fieldsIf you need some more details about BuddyPress feel free to read the Codex. And don’t hesitate to ask your theme support.
Have a nice day too.
April 6, 2015 at 5:16 pm #237341In reply to: mentions suggestion js problem
aymanomar85
Participant1- WordPress 4.1
2- install directory
3- subdirectory
4- wordpress upgrade 4.1.1
6-BuddyPress 2.2.1
7- last version
8- yes i have many plugins8.1-Advanced Custom Fields
8.2-bbPress
8.3-BP Login Redirect
8.4-BP Profile Search
8.5-BP Profile Widgets
8.6-BuddyPress
8.7-BuddyPress cover
8.8-BuddyPress Edit Activity
8.9-BuddyPress Follow
8.10-BuddyPress Security Check
8.11-Buddypress Social
8.12-BuddyPress Xprofile Custom Fields Type
8.13-Email newsletter
8.14-Facebook Friends Inviter
8.15-HashBuddy
8.16-rtMedia for WordPress, BuddyPress and bbPress
8.17-Social Login
8.18-User Name Availability Checker for wordpress/buddypress
8.19-Wordpress Social Invitations – LiteApril 3, 2015 at 1:33 pm #237244danbp
Participanthi @mcpeanut,
this snippet useable from BP 2.0.1 and above, can be added to bp-custom.php
it will hide the field ID 1 which is the default Name field to all, except site admin.it will also avoid the user to edit that field. So if you use this, i recommand you tell them on register page that once they entered a name it they could change it later. You can than ask them $$$$ to do it. đ
function bpfr_hide_profile_field_group( $retval ) { if ( bp_is_active( 'xprofile' ) ) : // hide profile group/field to all except admin if ( !is_super_admin() ) { //exlude fields, separated by comma $retval['exclude_fields'] = '1'; //exlude field groups, separated by comma $retval['exclude_groups'] = '1'; } return $retval; endif; } add_filter( 'bp_after_has_profile_parse_args', 'bpfr_hide_profile_field_group' );More here:
April 2, 2015 at 4:07 pm #237187danbp
ParticipantNo.
Why ?
Because this is an error message. If you see it when you’re on profile fields admin, it is better for you to see this as nothing. As admin, it is you who set up field access. It is required ? Make it not required or fill in that field.
March 31, 2015 at 12:17 pm #237003In reply to: Particular Dating Site
Henry Wright
ModeratorMarch 30, 2015 at 1:43 am #236911In reply to: CPT per each BP-User
Pietro
ParticipantThank You dandp …
…
Mmm … it doesn’t seems to be enough … I do not really need custom fields into the bp-profiles … I need to connect to any bp-user a PRIVATE Custom Post Type. Something like a post. But personal, which nobody can see, except administrators for instance, or people who is allowed by the user itself …
… I hope it is more clear …
I will keep thinking about this. Hopefully I will find a way.Thank You.
PietroMarch 30, 2015 at 12:04 am #236910In reply to: CPT per each BP-User
danbp
Participantsee if this plugin may help:
https://wordpress.org/plugins/buddypress-xprofile-custom-fields-type/March 29, 2015 at 11:56 pm #236909In reply to: Username vs Real Name
danbp
Participantthese fields are required by the system.
WP ask for username, password and email. When BP is activated, he uses WP’s name option Public Name so he can rely to WP. This field called Name is the only one which is required by BP for that reason.When you visit dashboard > users > your profile, you have a tabed page with profile options (the original WP user manager) and Extended profile (which belongs to BP) where you can edit your profile. On WP’s tab you see login, first name, last name and public displayed name. On BP’s tab there is only Name, which reflects what is in first and or last name.
In wp_users table, you have user_login, user_nicename and display_name
user_login and user_nicename have the same content
display_name contains first and/or last name (if exist from a previous WP install, before BP installation).Depending what and where something needs a name to work (avatar, comment, notice, activity, etc), one or the other name option is fired.
If you don’t need/want real names on front end, you can use this plugin:
https://wordpress.org/plugins/buddypress-usernames-only/March 24, 2015 at 10:45 pm #236547In reply to: Adding new 'Order By' on members loop
ch1n3s3b0y
Participant@danbp – I’m guessing this is the function I need order_by_most_favorited() to edit to work with XProfile fields?
I’ll try it now and see if it works with XProfile fields.
March 23, 2015 at 2:31 pm #236428In reply to: Registration Page
IHaveToDoThis
ParticipantGo to your profile page on your site. Next to ‘View’ there is ‘Edit’. Click on ‘Edit’ and you can change fields like your name, etc. and you can also see it’s visibility. You can change visibility settings by going to your admin dashboard and playing around with the profile fields under the Users tab. Your users will be able to see their profile visibility under their profile tab and have the ability to change it (if you give them that option).
Hope this helps! Took me a while to get it too.
March 23, 2015 at 11:53 am #236418vinay24k
ParticipantThis code is working. But its showing Current user custom fields for any profile i visit. But i want Particular user custom field under particular profile. How can i do that ? I tried adding ,123 as suggested in that documentation but getting error
<?php do_action( 'bp_before_member_header_meta' ); ?> <div id="item-meta"> <?php if ( bp_is_active( 'activity' ) ) : ?> <?php do_action( 'bp_directory_members_item' ); ?> <?php $theUserID = bp_get_member_user_id();?> <div id="profile_data"> <li><?php echo get_user_field('gender_id', $theUserID);?></li> <li><?php echo get_user_field('College_name', $theUserID);?></li> <li><?php echo get_user_field('course_name', $theUserID);?></li> </span> </div>March 21, 2015 at 10:47 pm #236363In reply to: I just can't get registration to work
@mercime
Participantthen added that to the buddypress pages
@seph
Make sure that you didn’t add the Register link under any of the main BP component pages (e.g. Members, Groups, Blogs, Activity) in the menu links.
Make sure that you didn’t add any text in your “Register” page so that BP can automagically add the Registration Form and the first group of the Profile fields in thepage.
Make sure that you’re not logged in when you go to the Register page.March 18, 2015 at 10:52 pm #236227somethingelse
Participant^+1 wow, i totally need this too… DESPERATELY.
if i had realized just how difficult this was going to be to accomplish,i never would have started this project with buddypress. what is the point of xprofile fields if they are not easily searchable?
there are so many GREAT things about buddypress, it’s super frustrating that this thing which seems to straightforward is so challenging.
i have been searching … the “buddypress profile search” plugin is not the answer… it isn’t user friendly enough. I just want one search box – “find a teacher in your city” that will search 4 xprofile fields of all our teachers… ONLY THOSE FOUR FIELDS… and return the results.
i’ve tried a google site-search tool, too…
the trouble is that our teachers have bios, and in those bios they often include cities where they have trained, or toured, and we do NOT want those included in the “Find a teacher” results.i have Base City, and 3 “additional teaching locations” fields… those, and NAME, are the ONLY fields i want searchable.
i can pay for help.
but i figured this would be something simple i could do myself!March 18, 2015 at 6:40 pm #236219In reply to: Get all options from custom profile field
ckchaudhary
Participantfunction wdw_bp_get_field_options( $field_id ){ global $bp, $wpdb; return $wpdb->get_col( $wpdb->prepare( "SELECT name FROM {$bp->profile->table_name_fields} WHERE parent_id=%d AND type='option'", $field_id ) ); }You can call the above function passing id of the field( fieldabc in your example ). This will return all options of the field in an array.
March 16, 2015 at 5:33 am #236094In reply to: Help setting up BuddyPress on WordPress site
@mercime
ParticipantDo you recommend I create text/content and install a form plug-in for my âregisterâ page associated with the BPress first before working on adding Member Profile Fields?
@dleit please do not install any form plugin for your “Register” page. Leave it blank as BuddyPress will dynamically add the necessary forms. What you need to do is set up the profile fields. Remember that whatever field you add in the first group of the profile field will appear on the right side of the Reigstration form.It just doesnât seem like it will solve the âuser registration is currently not allowedâ issue.
After you add the member profile fields/group(s) you want for your community, I suggest going to the admin menu Settings > General and Allow Registrations. BP Codex is your friend https://codex.buddypress.org/getting-started/register-and-activation-pages/
March 15, 2015 at 3:22 am #236032In reply to: Help setting up BuddyPress on WordPress site
RecDC
ParticipantDo you recommend I create text/content and install a form plug-in for my ‘register’ page associated with the BPress first before working on adding Member Profile Fields? It just doesn’t seem like it will solve the “user registration is currently not allowed” issue. Thank you for the link there on adding Member Profile Fields (I feel confident in doing that). It just dawned on me that my site should look like this in some ways because the BPress is in use.
March 15, 2015 at 2:40 am #236030In reply to: Help setting up BuddyPress on WordPress site
@mercime
ParticipantI created a page for each component in this plug-in and I donât know what to do next.
@dleit It depends. You could start adding Member Profile Fields and/or Create Groups and/or install Group and/or Sitewide Forums if you need forums.btw, spammers have been removed đ
March 13, 2015 at 10:23 am #235940In reply to: group for logged in user
howsepa
ParticipantAnother option….
If this wont work – i could also use custom fields in the extended profile feature of buddypress and set up a field to contain this ‘category’ information.
Either would work.. but need to store a category for each user and capture this as they log in.
March 11, 2015 at 3:47 am #235826In reply to: Registration text not applying – how do you edit?
5high
ParticipantOK, I’m a newbie with BP but you have to:
1. edit/set up your registration page form fields that you want in Users > profile Fields.
2. you can edit the actual text found in the Registration page in registration.php file. Found here on your server: plugins/buddypress/bp-themes/bp-default/registration/register.php
3. you can edit the actual text found in the Activate page in activate.php file. Found here on your server: plugins/buddypress/bp-themes/bp-default/registration/activate.phpIf you read the getting started docs they help a lot, and then search this forum and on the i/net you’ll find heaps more info.
Good luck!
March 11, 2015 at 1:41 am #235825rosyteddy
Participanthttp://seventhqueen.com/support/forums/forum/kleo/kleo-general-questions
Hi @sjjenkins
This should not be very difficult. Some small change in the template file but since they have no downloadable version its difficult to say.
This may contain some clue –Showing some profile fields in memberâs profile header not working after update
Just curious, how does the Whats New box looks like when you use
buddypress-activity-privacy, buddypress-activity-plus and any Media plugin like rtmedia ?
Whats your site (if its not private) url ?Thanks.
-
AuthorSearch Results