Search Results for 'buddypress'
-
Search Results
-
Topic: 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.
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
I’m using Facebook log in, in conjunction with BuddyPress (I’m using the Nextgen Social Login WordPress Plugin).
The password, however, does not transfer over.
If the user registers using facebook, then logs out. Then logs back in using the facebook email and password – BuddyPress does not recognise the details.
It also does not notify the user of their username for logging in (which it makes up).
Any advice?
I had been using this code to show profile fields on a member’s card in the directory. It was working perfectly until the last BuddyPress update. After the update it disappeared. (even with all other plugins disabled and on the Twenty-Twenty theme)
Is there a fix for this or should I change something in my code?
function add_city_to_members_loop() {
$field_content = bp_get_member_profile_data( ‘field=City’ );
if( $field_content != false )
echo ” – ” . $field_content;
}
add_action( ‘bp_directory_members_item’, ‘add_city_to_members_loop’ );