Search Results for 'buddypress'
-
Search Results
-
Topic: Solved – Follow user plugin
Will there be any updates to this? did you guys make this plugin
I built a website for a client where we needed to collect some additional information on registration from users that would ultimately be used in their profiles (it’s pretty much a social media platform for local artists).
I have it so that when someone sign ups a notification email goes to my client so he can make sure they are a legit artist to keep them on the site. The notification email just has the default info in it.
Is there any way to include the additional extended profile data in the notification email?
Wordpress 5.4.1
Buddypress 6.0Topic: Incorrect Activation Email
Hello,
Having some issues with activation emails and wondered if anyone could assist. While activation emails are being sent from my site, they are always the default WordPress ones and not the Buddypress ones.
If this is relevant, I’ve noticed any attempt to create new email templates gives me a ‘Sorry, you are not allowed to edit this post’ message even though I’m the site administrator. Editing existing ones seems to work though.
Thanks in advance.
I would like to create a simple email send to admin when a user updated a specific Profile Field.
The field is a checkbox so it should be an array because a have multiple values.The code that i alreade try to use is
function buddypress_profile_update( $user_id ) { $admin_email = "YOUR-EMAIL@DOMAIN.COM"; $message = sprintf( __( 'Member: %1$s', 'buddypress' ), bp_core_get_user_displayname( $user_id ) ) . "\r\n\r\n"; $message .= sprintf( __( 'Color: %s' ), bp_get_profile_field_data('field=Color') ). "\r\n\r\n"; wp_mail( $admin_email, sprintf( __( '[YOUR SITE] Member Profile Update' ), get_option('blogname') ), $message ); } add_action( 'xprofile_updated_profile', 'buddypress_profile_update', 10, 5 );1st Problem. In the email i get just “Color: Array” , i have tried to use vsprintf instead but it gives me back only one value.
2d Problem. I get an email whenever there is an update in general, and not only when there is an update from the specific field with ID 7.
Any help would be appreciated.
Topic: FRONT END PROFILE Display
Does anyone know how we can adjust the front end of the BuddyPress profiles for our profile pages? Right now the profile info is listed in one column and we are wasting a lot of white space.
I am willing to pay for help.
KJ
When a user logs in to my BuddyPress site, it redirects them to the WordPress login. Does this mean that you need to create a WordPress account to login to your BuddyPress account? If so, is there a way around this since I would like my users to just login through the BuddyPress portal and have that get them straight to the BuddyPress site.
Hi,
I’m using last version of buddypress with profile fields, I have two issues :
1) i get in profil page phone as html not text like that :
Phone<a href="tel://06666666669" rel="nofollow">0666666666</a>
2) how can i validate phone number in registration page? i used jQuery to do that but does not work, this is my code jQuery:jQuery(document).ready(function(){ //Code Starts function validatePhone(field_49) { var a = document.getElementById(field_49).value; var filter = /^[0-9-+]+$/; if (filter.test(a)) { return true; } else { return false; } } //Code Ends //Code Starts jQuery('#field_49').blur(function(e) { if (validatePhone('field_49')) { $('#field_132').html('Valid'); $('#field_132').css('color', 'green'); } else { $('#field_132').html('Invalid'); $('#field_132').css('color', 'red'); } }); //Code Ends });Thnak you
Hi.
I have successfully registered new users which are active.
However, none of them get redirected to a profile page after login and none of them have a profile page for all i know. Its like Buddypress doesn’t consider them active because it does not show them on the Members Area even though I have tried multiple logins with their account and WordPress confirms they are active.Hello,
I installed buddypress for a few months and it is he who manages the registrations to my site. When a person registers, he does not appear systematically in the members page. Did I forget a setting? However in the profiles the members who do not appear are well: Role on the site = Subscriber and Roles on this forum = Participant
My version is WordPress 5.4.1 with the Divi theme, the Learndash plugin and the version 6.0.0 of BuddyPress.
I had installed the BuddyPress for LearnDash plugin which I uninstalled because it caused bugs. Here is my site https://terresdesavoirs.fr/members/Do you have any idea where this display concern can come from?
Hello,
Can anyone please tell me how to change the Avator cropping image size?
It works OK on larger devices. However, on mobile devices the uploaded image that you want to crop is way too big for the screen. CSS modifications do not seem effective at resizing the image during the cropping stage.
Any help is much appreciated.
Jay
Topic: Member profile photos
How to show members who have photos only? I do not want profiles without photos to show on my BuddyPress members widget.