Search Results for 'registration'
-
Search Results
-
I have an issue I need help solving.
New User BuddyPress activation emails (and resends) are being blocked by all Microsoft email services (Live, Hotmail, MSN, etc)
However, no other emails are being blocked, and activation emails and resends make it to other services like GMail.
Is anyone else seeing the same issue?
My system is using the latest version or WordPress 4.9.2 and BuddyPress 2.9.2
How I tested my WordPress site (not a multisite:)
1 – Disabled all plugins on my site.
2 – Registered for my site with standard WordPress interface using a Hotmail.com email account and received registration email from WordPress nearly instantly in my hotmail inbox.
3 – Activated Buddypress
4 – Registered with another Hotmail account and never (8 hours and counting) received activation email.
5 – Registered with Live, MSN, Outlook, Gmail, and other email accounts. Registration email makes it to ALL email services EXCEPT Microsoft.
6 – Wondering if it’s just BuddyPress registration emails, so I reset the password on existing accounts that use Live, MSN, and Hotmail wile BuddyPress is active. Password reset emails arrive no issue.
7 – Tried re-sending registration emails. They arrive at all email services except Microsoft.
8 – Disable Buddypress and try registering with Live.com email. Like step 2 I get email immediately.
9 – Enable Buddypress and try registering with another Live.com email. Registration email never arrives.
10 – Send email directly to Microsoft accounts using same email address that wordpress does, and they arrive no issue.
11 – Forward registration email from Gmail to Hotmail, and forward arrives without issue
12 – Create a new email address for my website to use to send email with, and go through above steps with same results.Does anyone have an idea why only BuddyPress Activation emails could/would be block by only Microsoft? ALL other site emails sent to the same Microsoft email addresses go through including:
– WordPress registration emails (when BP is disabled)
– Password Reset emails
– Emails sent directly using an email clientI have also tried an SMTP mail plug-in with the same results.
I have tried the Tools – BuddyPress – Reinstall emails with same results.Is anyone else seeing this issue?
Does anyone have any thoughts or suggestions?
Thanks in advance for any suggestions!
Shawn Tierney
Topic: Second registration form
Hello and thank you for your help in advance.
I’m new to buddypress and need help with making my custom registration page working. I need to have two different registration forms for two different types of members. I’ve tried coping the register.php to a template page but the bp_get_current_signup_step() displays NULL so the page is empty. Basically I need to apply one member type by default with the first registration form and the other one the second type member.
Thank you!
i recently installed buddypress plugin and noticed that no registration and activation page was generated.
i have turned on registration for new users in settings.
i have created and selected activation and registration page in buddypress plugin settings.
i have checked for register.php and activation.php in plugin directory. its there.
also my theme is a bp compatible theme.i am not able to figure out the problem and i also cant reinstall everything from the start. Help plz.
website- https://basil-check.000webhostapp.com/I look at my user list and see so many without a name, which is a required field. Tested to see what was happening, and on a whim tried entering a few spaces in the name (required) field, and what do you know it worked! So it appears that people registering don’t actually have to enter their name if they want to remain anonymous. I would like that name field filled in.
Is this a bug? I don’t know. It’s irritating, that’s for sure.
Using WP version 4.9.2, BuddyPress version 2.9.2.
Site link: https://wisdomseekers.net
I have tried a new signup using twentyseventeen, and was able to create an account with ” ” as the (required) name.Hi, can Buddypress only allow user registration, which email addresses have been previously added in wordpress?
So just like title says. Forums are created, everything works. I can register too, but after registration you recieve an email with activation link. And that link doesn’t work. I tried it on multiple mail accounts with no luck.
I am using buddypress for member registration in a website. In edit profile page, photo-upload section is not working. Can anyone please help me with this issue?
Hello,
When I go to register the “Profile Details” field is gone and I cannot register a new profile. When I hit “enter” I am immediately brought to the home page, no confirmation email is sent, and no profile is registered. I would greatly appreciate any help on this.
The website is http://philoquest.life/
The registration page may be navigated from the sidebar.
My registration page is no longer working. When the submit button is selected after filling out all required fields it acts like it is loading then it scrolls the page up, doesn’t auto clear the entries and doesn’t show any sort of message. The user doesn’t come up as registered in the backend and no email is sent. The only thing that has changed is an update to wordpress 4.9.1 and buddypress 2.9.2 Could this have caused the issue? I tried disabling all plugins except buddypress and switching my theme to 2015 (default theme).
Thank you very much for your time!
Take care,
KariI have installed buddypress plugin.
My wordpress application should have separate registration for users.
But for a separate page named “some_community” I would like to have buddypress integration for users. In short users for wordpress should not mix with buddypress users…
Don’t know whether this is possible. However looking for some solutions.
Thanks in advance
Topic: thank you for registering
Hi,
Hoping you can help.I have added a lot of custom post types to my site (http://group.ag2link.com)
I am not able to register a new user in buddy press. After I try to add the new user on the registration page I am taken to the search page and not a thank you for registering or confirmation page.Thanks in advance.
RTopic: registration email
Hi,
I have noticed all emails sent when someone registers are from wordpress@mydomainname.com! Is it possible to change it to admin@mydomainname.com or completely hide wordpress from email correspondences?
Regards,
JacobWe are using WordPress 4.9.1 with BuddyPress 2.9.2, for testing purposes I used theme Twenty Fourteen (which showed the same behavior as the Boss child-theme used on our site https://gruppen.rpi-virtuell.de/ ).
On the default registration page a new user can choose between “Everyone”, “Only Me” and “All Members” for the visibility of the (required) name under “Profile Details”. But no matter which of these three options you select – on your public profile page the name is always displayed, even to viewers who are not logged in (“everyone” for that matter).
Since we encourage the users of our site to use their real names in their profile the above behavior caused some questions, because some ot them didn’t want to show their names on their profile pages.
So my question: If BuddyPress requires the username to be present on the profile pages: Why do you have the choice of “Who can see this field?” on the registration page?
Or am I missing something?Greetings!
I currently have WP 4.9.1 & Buddypress 2.9.2 installed. I have made a navigation menu, selected the buddy press options, which include log in, log out & Register. I have also made a bp-custom.php file with the following text in it in order to disable the BP registration and to use the default wp one.
<?php
// hacks and mods will go here/**
* Disables BuddyPress’ registration process and fallsback to WordPress’ one.
*/
function my_disable_bp_registration() {
remove_action( ‘bp_init’, ‘bp_core_wpsignup_redirect’ );
remove_action( ‘bp_screens’, ‘bp_core_screen_signup’ );
}
add_action( ‘bp_loaded’, ‘my_disable_bp_registration’ );
add_filter( ‘bp_get_signup_page’, “firmasite_redirect_bp_signup_page”);
function firmasite_redirect_bp_signup_page($page ){
return bp_get_root_domain() . ‘/wp-login.php?action=register’;
}?>
This works fine, in regards to when you are on the WP log in page, and choose register, it loads the correct registration page.
However, in regards to the BP Register on the navigation menu, this still re directs to the buddypress registration page. i would like it to direct to the WP one.
Can i ask please what else is needed in order for the Buddypress Register navigation menu to redirect to the WordPress Register Page.
Regards