Search Results for 'profile fields'
-
Search Results
-
HI,
how to put the checkboxes and radio button horizontally in the profile fields ?
xxx yyy zzz
(and not:
xxx
yyy
zzz)Thanks
Hi,
How to disable the editor only on the xprofile buddypress multi-line fields ?
RegardsHello,
how to hide all the buttons that allow to modify the visibility of all the fields of the profile by editing his profile?
Either by a function or a css but with a generic command because there are many!
https://screenshots.firefox.com/yC7GS1lY1YGtBjnp/seventhqueen.com
RegardsTopic: Profile Fields Issue
Hi
I’m using the latest version of Buddypress and WordPress.
I’m having an issue in deleting the Long Description and Short description profile fields.
Every time I delete one of them it adds it back.
I have even renamed them but still it either adds a Long Description or description profile field.
Hey folks,
first of all thank you for this great community plugin! It helped me a lot to realize projects.
I really need to update my very old BuddyPress installation on a website!.
The site still uses a very old method to copy template files from BuddyPress into the Theme directory and load them over. I use a custom theme.
I would like to do a fresh installation of BuddyPress with it’s standard template. Of course with all current database entries, such as activites, members, profile fields – it’d be terrible if they were lost!
Does a WordPress theme generally need to be made “BuddyPress compatible” in any way?
I already tried to delete the template files in my WordPress theme directory, but unfortunately the website crashes with a “white screen”.
WordPress: 4.9.1
BuddyPress: 2.9.2Big thanks for your help and a happy new year!
Regards
MalteI am looking to create custom BuddyPress profile sections. I have the sections created within my BuddyPress menu but it is the individual links I am having issues with. When I go to my menu and type the custom links, I am using something along the lines of
http:websitelink.com/members/seanb/media/photosI tried replacing my name “seanb” with both “%USERNAME%” and “MEMBER_NAME” but neither seem to work. I have done this before but am having some trouble re-figuring it out. I am looking for a general username to use so the link is universal and will go to that specific users photos when visiting their profile page when they click that tab.
In BuddyPress there is a built-in mechanism for synchronizing profile fields from WordPress.
By default, it synchronizes only the “display_name” field, which is not always sufficient.
Here is an example of the code by which you can synchronize any available fields in the WordPress field with the Buddypress fieldsfunction xprofile_sync_bp_profile2( &$errors, $update, &$user ) { // Bail if profile syncing is disabled. if ( bp_disable_profile_sync() || ! $update || $errors->get_error_codes() ) { return; } // Querying data from a table "usermeta", first we get the value of the custom field "address" and substitute this value for the "Address" field of the xprofile BuddyPress $address = get_user_meta( $user->ID, 'address', 'true' ); xprofile_set_field_data( 'Address', $user->ID, $address ); //Similarly with other fields $firstname = get_user_meta( $user->ID, 'first_name', 'true' ); xprofile_set_field_data( 'Name', $user->ID, $firstname ); $lastname = get_user_meta( $user->ID, 'last_name', 'true' ); xprofile_set_field_data( 'Lastname', $user->ID, $lastname ); $description = get_user_meta( $user->ID, 'description', 'true' ); xprofile_set_field_data( 'Bio', $user->ID, $description ); // Querying data from a table "user" xprofile_set_field_data( 'E-mail', $user->ID, $user->user_email ); xprofile_set_field_data( 'Site', $user->ID, $user->user_url ); } add_action( 'user_profile_update_errors', 'xprofile_sync_bp_profile2', 10, 3 );Unfortunately, the fields are synchronized only when the profile is updated. I do not know how to start mass synchronization 🙁
I hope someone will find this information useful.
wp 4.7
bp 2.9.2I am using custom profile fields and when the text contains an ampersand (in this case, within a company name) it is not escaped correctly and breaks the searchable link. See below…
WP 4.9
BP 2.9I’m having a problem with the output of special characters in the Buddypress profile fields.
Like for example: a company name that uses apostrof ‘Name’ outputs this in the profile field as: https://www.dropbox.com/s/h14ir9rjtnuyc8l/characters.jpg?dl=0Is there anything that could be done to let the fields accept special characters?