Search Results for 'profile fields'
-
AuthorSearch Results
-
November 30, 2011 at 9:53 pm #125360
In 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)) : ?>October 28, 2011 at 2:36 am #122954PBTam
MemberI checked the entry.php file in the theme/activity folder but I was unable to find an explanation to insert xprofile fields. Any hints?
October 27, 2011 at 6:22 pm #122868modemlooper
ModeratorIn the file entry.php in the activity folder you can see a comment that explains how to show xprofile fields in the member loop
October 26, 2011 at 6:44 pm #122434In reply to: User documentation
r-a-y
KeymasterThe only way to import generated profile fields at the moment is to do a straight database export of the xprofile field tables and then import them into your new site. (These database tables are “wp_bp_xprofile_fields” and “wp_bp_xprofile_groups” by default.)
The codex is basically a WordPress blog. I believe everyone who has an account with buddypress.org should be able to login at codex.wordpress.org/wp-admin/ and post something. Though, your post might be held as a draft until someone with higher permissions can look at it.
If you have ideas for codex articles, please feel free to post them. If you encounter problems, let us know.
There isn’t a single document to reference for documentation. I don’t believe WordPress has a document like that available on their codex. (I could be wrong though!)
October 26, 2011 at 1:33 pm #122359In reply to: User documentation
James Carroll
MemberI, too, am looking for documentation. I found the BuddyPress codex [1]. However, I find it somewhat lacking. Is it a wiki like the WordPress Codex[2]? If so, I may add what I learn to help others.
Ideally, I am looking for a single-document version of the documentation. I would like to print it and have it as a reference as I work. Has that been done before? What would it take to write a script to combine the existing docs at [1] into a single document (HTML, PDF, etc.)?
@mercime, I am specifically looking for information about user profile fields: I’d like to import an existing set of user fields. I haven’t searched the plugins yet; I’m still trying to get oriented to the BuddyPress support system. As for “submitting articles,” where do the articles live? How do I submit one?
Thanks!
[1] https://codex.buddypress.org/home/
[2] https://codex.wordpress.org/Help:ContentsOctober 23, 2011 at 5:06 pm #122913In reply to: Username / Display name problem
Gossy Uk
MemberYour solution
I had this same problem.
TO fix it, go to the BuddyPress Profile Fields Admin Area,
Rename the Full Name to Name
Rename the Main Profile Field Group to BaseSave.
This will fix the issue.
Cheers
http://studentscircle.netOctober 22, 2011 at 10:06 am #123352Paul Wong-Gibbs
KeymasterSure. In your theme, edit up /members/index.php and /members/members-loop.php. In the latter, which is where you will most likely want to make your changes, there’s a block of text starting “If you want to show specific profile fields here you can…” which explains how to add in extra fields.
-
AuthorSearch Results