Search Results for 'profile fields'
-
AuthorSearch Results
-
December 4, 2011 at 8:33 pm #125564
In reply to: Profile page
modemlooper
ModeratorIn the admin under buddy press menu you will find “profile fields”. Click that to set profile field options.
December 4, 2011 at 7:51 pm #125563In reply to: Problems with activity page and group page
serdox
Participanti have the same issue. i have also in the wp admin menu only settings, profile fields, components and pages! i use wp 3,2,1 and buddypress 1,5,1 with sitewide forum. forum is simple press. bbpress didnt worked out. so i deactivated it. in the user bar i cant find the genaral groups page. as user or as admin. i have to put site.com/groups manually to see the groups listing page and create link! activitypage also. i mean the genaral pages. there are menus for member releated groups and activity. but genaral member list link is also missing: site.com/members. whats wrong?
December 3, 2011 at 12:12 am #125475In reply to: separate register and profile fields
niklaas_
MemberThx @DJPaul
Now I can’t se the second group in my profile when I logged in. How do I get that to work?
And also, when the user logs in for the first time I would like the second profile page to be the default landing page. Is this possible?
December 2, 2011 at 5:14 am #125422lapo80
MemberI see now that if I go in the admin page of site in the FIELDS PROFILE I have the same problem! I have (normal) no name but I have male, 10-10-1996 etc… and I can’ t set any other default value for these fields.
Anyone resolve ?
November 30, 2011 at 10:34 pm #125364In reply to: separate register and profile fields
Paul Wong-Gibbs
KeymasterEasiest way without changing your theme templates would be to put all your register fields into profile group 1, and all your other fields into another group. By default, only profile field group 1 appear on the registration page.
If, however, your theme isn’t BP-Default (or a child theme of), I’ve got no idea.
November 30, 2011 at 10:29 pm #125363In reply to: separate register and profile fields
Lifeischoice
ParticipantThis will be very useful for membership sites…
November 30, 2011 at 9:53 pm #125360In reply to: separate register and profile fields
modemlooper
ModeratorSounds like good enhancement/plugin
November 30, 2011 at 8:05 am #125256recruitbk
Member@pcwriter: thanks for your help, still having some trouble displaying. I think the trouble is lying within the
on the edit.php where all of these fields are displaying. I added a border to the wrapper just to see what was happening. It looks like the loop is actually looping the profile-wrap, even though I only have it for first name, middle name, last name. I tried removing the while loop all together, and then no fields are visible. Any ideas on what I can do here?`#profile-wrap{
width:100%;
border:1px solid #dbdbdb;
}#profile-wrap #edit-profile-right-column-firstname, #profile-wrap #edit-profile-right-column-middlename, #profile-wrap #edit-profile-right-column-lastname{
display:inline-block;
width:50%;
margin-right:2%;
}`In my html, I’m referencing as shown below , but BP is just defaulting to the standard profile page formatting putting those 3 fields one below each other instead of on the same line. You can login again and see what I mean (un: jahmakan5 , pw:test)
`
<label for="”>
<input type="text" name="” id=”” value=”” /><label for="”>
<input type="text" name="” id=”” value=”” /><label for="”>
<input type="text" name="” id=”” value=”” />`
November 29, 2011 at 7:24 am #125213In reply to: [resolved] Thanks for the help Mercime and Xevo!
bikramglobal
MemberThanks kwerri,
I did what you said and here’s what happened with BP Default theme activated:
WordPress database error: [Table ‘BikramGlobal.wp_bp_xprofile_fields’ doesn’t exist]
SELECT id FROM wp_bp_xprofile_fields WHERE name = ‘Name’etc…
November 28, 2011 at 12:29 am #125105In reply to: Possible bug with plugins.php and saving user meta
dude
Memberokay reverted back to the default and still the same issue
If I sign in as Admin and view a non-friend profile that has checked the privacy settings I get the message ‘you must be friends with this user to view their profile’ all is good, but..
If I sign in as a member and go to a friends profile – again that has their privacy settings checked I cannot see any of their profile fields – plus there is nothing on display in terms of the above notice – you must be friends blah blah
I got rid of ALL walled-garden edits and still the issue persists dude

The trouble is in total I’m running 10 plugins
I’ve stripped my plugins down to the bone and even sacrificed a couple that I ‘want’ more than ‘need’ if you know what I mean, so can’t afford to lose anymore or major functions on the site will be sorely missed.
Is it at all possible that this issue with the privacy plugin is ringing any other ‘alarm bells’ apart from plugin conflict..?
November 27, 2011 at 7:41 pm #125090modemlooper
ModeratorJust read you don’t want to edit home.php. There isn’t a filter for privacy like there is with messages for showing profile sections. Messages and xprofile fields has logic for output and can be filtered but the actual page needs a code edit.
November 26, 2011 at 7:55 am #125030In reply to: How collect personal data
modemlooper
ModeratorIn the admin under BuddyPress menu there is a section “profiles” you can add more fields for users to fill out at sign up . These are not hidden, you will have to come up with your own solution. Hiding fieldsis on the development road map. There is also BuddyPress profile privacy plugin.
November 24, 2011 at 5:26 pm #124960recruitbk
Memberlogin username is just jahmakan5 password:test
I’ll replace the html comments, but thats not affecting the white space. Its the hidden fields for sure.November 24, 2011 at 4:48 pm #124959In reply to: Display avatar following gender in xprofile fields
julien760
MemberNobody else have try to do this ?
November 24, 2011 at 4:46 pm #124958julien760
Memberhello,
I try to do the same thing. I want to display a specific picture following the gender of the members.
I use add_filter and the picture of the profil is the good one but all others pictures from sidebar, for example, are the same…
Have you finally find a solution for this issue ?
Thanks in advance,
My test code :
function bp_remove_gravatar ($image, $params, $item_id, $avatar_dir, $css_id, $html_width, $html_height, $avatar_folder_url, $avatar_folder_dir) {
$default = get_stylesheet_directory_uri() .’/images/bp_default_avatar.gif’;
if( $image && strpos( $image, “gravatar.com” ) ){
if ( bp_get_profile_field_data( ‘field=Gender’ ) == ‘Female’ ) {
$default = get_stylesheet_directory_uri() .’/images/def_f_avatar.gif’;
return ‘‘;
}
if ( bp_get_profile_field_data( ‘field=Gender’ ) == ‘Male’ ) {
$default = get_stylesheet_directory_uri() .’/images/def_m_avatar.gif’;
return ‘‘;
}
else {
return $image;
}
} else {
return $image;
}
}
add_filter(‘bp_core_fetch_avatar’, ‘bp_remove_gravatar’, 1, 9 );November 23, 2011 at 5:10 pm #124889In reply to: Display avatar following gender in xprofile fields
julien760
MemberThank you for your answer Xevo.
Ok but if I do that, I’ll need to do in all area where there is profile picture… even in widget on sidebar… in member list, etc… It is very long, no?
It is not possible to modify the bp_member_avatar function to include this test?
It’s works like this when a member upload it’s own picture, it is automatically display as avatar but I don’t know how it works.
Thanks
November 23, 2011 at 4:03 pm #124884In reply to: Display avatar following gender in xprofile fields
Xevo
ParticipantGet xprofile field result, run it through an if, and just get the avatar out of your images folder of your theme. No buddypress avatar functions needed.
November 19, 2011 at 12:58 am #1246624ella
ParticipantYour code should work because this code : php bp_member_profile_data( ‘field=Country’ ); works for me in members-loop.php – didn’t try it in BP 1.5 yet
November 9, 2011 at 6:11 am #124016jonnyscholes
MemberBP Media has a nice upload function accesable from the users profile, if you dig through their plugin files im sure youd find a similar function. Or are you looking for some sort of shortcode for users?
Theres also https://wordpress.org/extend/plugins/buddypress-activity-plus/screenshots/ which might be sort of what your looking for…
November 6, 2011 at 4:20 am #123853In reply to: Not getting registration/activation email
AmesEla
MemberHi there,
I am having a major issue in that the registration is not populating the fields in the user database. Can anyone help? intooutside.org/sign-up
Somehow the fields are not inputting the data into the user profile (ie: first, last names are required and they are nowhere in the database). This happened after I installed Buddy Press
Help!
PS I am not a coder and know conceptually, so speak laymen if possible in your response
November 3, 2011 at 10:36 pm #123704In reply to: Showing Extended / Custom profile fields?
spennis
MemberStill no answer to this one! Once again…I do not understand the purpose of the extended profile the way it works (doesn’t work) right now.
November 3, 2011 at 10:31 pm #123703spennis
MemberI have been asking for the same thing but no answer. This should be something that the Buddypress theme should integrate in future versions! It should be fairly simple and very useful! Not to mention a simple way to show the extended profiles…
November 2, 2011 at 4:30 pm #123624Quint
Participant@katje, were you able to get a resolution on finding a multiple-criteria “search” plugin?
@boonebgorges, Boone, I hope I’m not hijacking the thread because my question reflects one of katje’s questions: Is there a plugin or something close (that I could point a developer to) that would accomplish a multiple criteria search across the membership directory? Here’s a scenario: Let’s say that my membership comprises global athletes, both professional and social. Furthermore, each one of these athletes compete in many different sports. My potential membership could be in the hundreds of thousands, probably millions. My users would need a way to sift through a directory of that size. So, if my xprofile fields contain tria-thletes some of whom have held the profession of astronaut, then I dare say 99.99% of the membership would not meet that criteria. It’s an extreme example which I hope illustrates the need across general searches.
BTW, if this is considered hijacking a thread, please let me know and I’ll create a new topic.
November 1, 2011 at 7:53 pm #123578In reply to: Modifying / Customising the registration process
crazplain
Member@boonebgorges
Hi Boone,
I am trying to create a multi step sign-up registration page. Preferably also include some new profile field such as multi category drop down list and country with flags. Should i create new rows in wp_bp_xprofile_fields?
or just follow the example above and it will create it for me?
I was also wondering if I can have have something like step1, step2 etc like godaddy.com?November 1, 2011 at 12:20 am #123529PBTam
MemberHey modemlooper, I tried the line of code: bp_member_profile_data( ‘field=the field name’ );
but it simply puts the line of code as text onto my groups page. is this because the data is in the members loop but not available in the groups loop?
EDIT:
I found a way to do it here: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/profile-fields-in-members-list-on-groups-page/
the code used was this:
<?php $location = xprofile_get_field_data('Location', bp_get_group_member_id());
if(!empty($location)) : ?> -
AuthorSearch Results