Search Results for 'buddypress'
-
Search Results
-
Topic: User editing nicename
Is there a way for users to edit the nicename for their profile?
New users to my membership site are automatically generated when they buy a course (with my membership software, Memberium). The username is the email address, and the nicename is different.
A user recently asked if they could change their display name – but of course in Buddypress this @nicename.
I’d like to offer them a way of updating it in the Buddypress edit profile section. Is this possible?
Topic: social login
Hi,
I use BuddyPress and WP-Social-Login plugin for implementing social login service in registertion. I would like to get the profile picture from social account into profile page made by buddypress, but it looks it doesnt work. For example, I would like to set the profile picture in my website as facebook profile picture when user logs in with his fb account.
It works well with basic profile page set by wordpress, but not by buddypress.
Is there anybody who can help me..?I’m using OneSocial as a theme, with bbPress and BuddyPress. One thing that keeps me from using other themes: with OneSocial there is an icon next to the current user icon that shows when the user has new Private Mail. I cannot figure out how to get that new PM alert on other themes. I know with BuddyPress I can active PMS and I have those turned on, just not how to add an alert for the user.
Thanks.
Topic: Not Able To Create A Group
I am not able to create a group at this time (I used to be able to), when Create A Group is selected this comes up on the screen:
Warning: Cannot modify header information – headers already sent by (output started at /home1/clearth2/public_html/cypresslakesonline/index.php:43) in /home1/clearth2/public_html/cypresslakesonline/wp-content/plugins/buddypress/bp-groups/bp-groups-actions.php on line 140
Warning: Cannot modify header information – headers already sent by (output started at /home1/clearth2/public_html/cypresslakesonline/index.php:43) in /home1/clearth2/public_html/cypresslakesonline/wp-content/plugins/buddypress/bp-groups/bp-groups-actions.php on line 141
Warning: Cannot modify header information – headers already sent by (output started at /home1/clearth2/public_html/cypresslakesonline/index.php:43) in /home1/clearth2/public_html/cypresslakesonline/wp-includes/pluggable.php on line 1210
Topic: Automatic embed for image
Hi,
I’ve tried to change the avatar in several ways, but everytime Buddypress comes on the way and overrides settings. My last try was to set up a random avatar for every user, looks slack but… It doesn’t work with Buddypress. Since you guys are BP specialists I thought you would be able to know how to fix this issue.
Custom code I tried is this :
https://ownyourbits.com/2017/01/31/custom-random-avatars-in-wordpress/#comment-2187Many thanks, you rock !
Topic: Dating Community
I am new to Buddypress and have started to build a community:
disableddating.nuwhat is the easiest way to create a landingpage for the website?
Topic: Data change after login
Hello,
is it possible with buddypress that a user have to change his emailadress and password after the first login?
thanks
Hi there, I seem to be having a problem installing Buddypress. As soon as I install it I get the following error on the front end “This page isn’t working (My website url) is currently unable to handle this request.HTTP ERROR 500”
The backend is working fine.
I disabled all my plugins to and one by one activated them again to see where the clash is and it turns out to be Woocommerce.
Does any one know how I can fix this issue to get both plugins working together?
I noticed the post author avatar after posts has reduced in quality or blurred. The post author avatar was sharp before.
What could be the problem and the possible solution?
Thank you.
My client has asked that notifications get sent everytime a user updates his profile. I have two profiles that require notifications – the base group, and a group called: ‘Personal Details’ – the code I am using is sending emails for both forms no matter which form is selected, I have tried using if statements but the do not send.
The current code:
function rc_buddypress_profile_update( $user_id ) { $admin_email = "barbara@lsdev.biz"; $message = sprintf( __( 'Dear Admin, "Base Profile" details have been updated for the following member: %1$s', 'buddypress' ), bp_core_get_user_displayname( $user_id ) ) . "\r\n\r\n"; $message .= sprintf( __( 'Name: %s' ), bp_get_profile_field_data('field=Name') ). "\r\n"; $message .= sprintf( __( 'Surname: %s' ), bp_get_profile_field_data('field=Surname') ). "\r\n"; $message .= sprintf( __( 'Company Name: %s' ), bp_get_profile_field_data('field=Company Name') ). "\r\n"; $message .= sprintf( __( 'Company Website: %s' ), bp_get_profile_field_data('field=Company Website') ). "\r\n"; wp_mail( $admin_email, sprintf( __( 'FISA Member Base Profile Update' ), FISA ), $message ); } $personalDetails = xprofile_get_field_id_from_name( 'Personal Details' ); function rc_buddypress_personal_details_update( $personalDetails ) { $admin_email = "barbara@lsdev.biz"; $message = sprintf( __( 'Dear Admin, "Personal Details" have been updated for the following member: %1$s', 'buddypress' ), bp_core_get_user_displayname( $personalDetails ) ) . "\r\n\r\n"; $message .= sprintf( __( 'Mobile Phone: %s' ), bp_get_profile_field_data('field=Mobile Phone') ). "\r\n"; $message .= sprintf( __( 'Work Phone: %s' ), bp_get_profile_field_data('field=Work Phone') ). "\r\n\r\n"; $message .= sprintf( __( 'Address Line 1: %s' ), bp_get_profile_field_data('field=Address Line 1') ). "\r\n"; $message .= sprintf( __( 'Address Line 2: %s' ), bp_get_profile_field_data('field=Address Line 2') ). "\r\n"; $message .= sprintf( __( 'Address Line 3: %s' ), bp_get_profile_field_data('field=Address Line 3') ). "\r\n\r\n"; $message .= sprintf( __( 'City: %s' ), bp_get_profile_field_data('field=City') ). "\r\n"; $message .= sprintf( __( 'Postal Code: %s' ), bp_get_profile_field_data('field=Postal Code') ). "\r\n"; $message .= sprintf( __( 'Region: %s' ), bp_get_profile_field_data('field=Region') ). "\r\n\r\n"; wp_mail( $admin_email, sprintf( __( 'FISA Member Personal Details Update' ), get_option('blogname') ), $message ); } add_action( 'xprofile_updated_profile', 'rc_buddypress_personal_details_update', 10, 5 ); add_action( 'xprofile_updated_profile', 'rc_buddypress_profile_update', 10, 5 );What I tried to use to separate them:
function rc_buddypress_profile_update( $user_id ) { if ( xprofile_get_field_data( "User Type") == "Personal Details" ) { $admin_email = "martin@lsdev.biz"; $message = sprintf( __( 'Dear Admin, "Personal Details" have been updated for the following member: %1$s', 'buddypress' ), bp_core_get_user_displayname( $user_id ) ) . "\r\n\r\n"; $message .= sprintf( __( 'Mobile Phone: %s' ), bp_get_profile_field_data('field=Mobile Phone') ). "\r\n"; $message .= sprintf( __( 'Work Phone: %s' ), bp_get_profile_field_data('field=Work Phone') ). "\r\n\r\n"; $message .= sprintf( __( 'Address Line 1: %s' ), bp_get_profile_field_data('field=Address Line 1') ). "\r\n"; $message .= sprintf( __( 'Address Line 2: %s' ), bp_get_profile_field_data('field=Address Line 2') ). "\r\n"; $message .= sprintf( __( 'Address Line 3: %s' ), bp_get_profile_field_data('field=Address Line 3') ). "\r\n\r\n"; $message .= sprintf( __( 'City: %s' ), bp_get_profile_field_data('field=City') ). "\r\n"; $message .= sprintf( __( 'Postal Code: %s' ), bp_get_profile_field_data('field=Postal Code') ). "\r\n"; $message .= sprintf( __( 'Region: %s' ), bp_get_profile_field_data('field=Region') ). "\r\n\r\n"; wp_mail( $admin_email, sprintf( __( 'FISA Member Personal Details Update' ), get_option('blogname') ), $message ); } else { $admin_email = "martin@lsdev.biz"; $message = sprintf( __( 'Dear Admin, "Base Profile" details have been updated for the following member: %1$s', 'buddypress' ), bp_core_get_user_displayname( $user_id ) ) . "\r\n\r\n"; $message .= sprintf( __( 'Name: %s' ), bp_get_profile_field_data('field=Name') ). "\r\n"; $message .= sprintf( __( 'Surname: %s' ), bp_get_profile_field_data('field=Surname') ). "\r\n"; $message .= sprintf( __( 'Company Name: %s' ), bp_get_profile_field_data('field=Company Name') ). "\r\n"; $message .= sprintf( __( 'Company Website: %s' ), bp_get_profile_field_data('field=Company Website') ). "\r\n"; wp_mail( $admin_email, sprintf( __( 'FISA Member Base Profile Update' ), FISA ), $message ); } add_action( 'xprofile_updated_profile', 'rc_buddypress_profile_update', 10, 5 );Would appreciate some help on this.
Hello!
I have been trying to find an answer to this for weeks now… not consistently, just coming back to it again and again. I’ve tried to look up solutions and from what I can tell it seems like something is not set up right. I will post an example of what my administrator settings for profile visibility should be vs what they actually are. Also, I read that someone else had this issue but there was no response to follow up with their inquiry.
Here are the two images:
(From “How to Change Buddy Press Profile Field” https://wptavern.com/how-to-change-buddypress-profile-field-visibility-settings)
Screen shot of what this how-to guide says my edit screen should look like when I go to Users > Profile Fields > Edit Field:
https://www.mycrewlink.com/wp-content/uploads/2017/08/Screen-shot-1.png
This is what it looks like when I go to Users > Profile Fields > Edit Field:
https://www.mycrewlink.com/wp-content/uploads/2017/08/Screen-shot-2.png
And when I click on edit for the specific field:
https://www.mycrewlink.com/wp-content/uploads/2017/08/Screen-shot-3.png
Thank you so much for your time.
Take care,
KariHello,
I have followed the instructions on this article, https://codex.buddypress.org/legacy/getting-started/install-buddypress-on-a-secondary-blog/. Things seem to be working correctly, the pages are being redirected to the sub directory site, but the BuddyPress pages are blank.neither I or my hosting company can figure out what the problem is. Any help would be greatly appreciated.
