Search Results for 'registration'
-
Search Results
-
WP ver 4.6.1
BuddyPress ver 2.6.2Members, activity, profile, are all empty…. Register redirects to something that doesn’t exist, despite setting a known page in the dropdown. Attempted to redirect to known page, via bp-custom.php -this moved it to the page, but it rendered entirely blank. Attempted re-install of buddypress – somehow it claims there’s everything deleted but magically retains all settings when installed again – tried several themes, See mention of “bp template pack” plugin in forum that’d reset it all up, but unable to locate it as an installable plugin…
My install has stopped sending any emails out for new user activation.
I can receive emails sent by WordPress after a user is manually activated, and can receive any email from Postman SMTP, as these test emails work.I don’t use any other activity markers, but emails were not received when messages were sent either.
I have tried all of the listed troubleshooting steps that others have gone through before.
I have a custom function that creates a post for the user during the registration process. I have removed all custom functions and tried registering a user, and it still will not send any emails.
As BuddyPress uses it’s own PHP Mailer, I am not able to log them via any WP Mail logging tools, and want to see what might be going on here.
The problem reared its head around the time I upgraded to 2.6 (although the custom function during registration was also added at this time) as wellI have reset the emails multiple times, and I have not made any changes to them.
Could someone please provide assistance, or given me a suggestion on how to run the BP Email Debug code to get an email of any issues
Host is Bluehost
Here is my install, and plugin list
WordPress 4.5.4
BuddyPress 2.6.2
Advanced Custom Fields 4.4.10
Akismet 3.1.11 (inactive)
BackWPuP 3.3.4
BP Force Profile Photo 1.0.5
BP Member Type Manager 1.0.1 (inactive)
BP xProfile Location 1.2
BP XProfile WordPress User Sync 0.6.4
Broken Link Checker 1.11.2
Buddy Progress Bar 1.0.2
BuddyPress Conditional Field Groups 0.1.0
Buddypress Conditional Profile Field 2.0
Buddypress Geodirectory Integration 1.0.0 (inactive)
BuddyPress Member Type Generator 1.0.2
BuddyPress Profile Tabs 1.6.1
BuddyPress Security Check 2.1.2
BuddyPress Simple Terms And Conditions 1.3
BuddyPress Xprofile Custom Fields Type 2.5
BuddyPress Xprofile Member Type Field 1.0.4
Cherry Parallax Plugin 1.0.0 (for my theme)
Cherry Plugin 1.2.8.1 (for my theme)
Conditional Profile Fields for BuddyPress 1.1.9
Contact Form 7 4.5
Contact Form 7 – Dynamic Text Extension 2.0.1
Custom Hooks 1.0 (All my custom functions are in this plugin)
Custom Login 3.2.5
Custom Post Template By Templatic 1.0
Custom Post Type UI 1.4.1
Disable Comments 1.5.2
Display Posts Shortcode 2.7.0
Easy Parallax Slider 2.1.1
FacetWP 2.6.4
GEO my WP 2.6.6.1
GeoDirectory 1.6.5 (inactive)
Hello Dolly .1.6 (inactive)
MOJO Marketplace 1.0.1 (inactive)
MotoPress Content Editor Lite 1.6.5 (inactive)
Quick and Easy FAQs 1.0.3
SuitePlugins – Advanced XProfile Fields for BuddyPress 1.0.3
Super Socializer 7.8.1
WP Private Content Plus 1.11
WPFront User Role Editor 2.12.4
Yoast SEO 3.5Topic: Admin approval
Hi all,
Site with latest BP and WP. I have BBPress plugin installed with only sitewide forums and I need admin approval for new users. I saw there are several plugins but it seems that each of them manage just WP or BP.
How I can prevent a user interacting with the whole site until he is approved by an admin?
I saw the BuddyPress Registration Options plugin block the user until approval only for the BP area of the site.
Thank you in advance
Hello,
I am working on a BuddyPress website at the moment and I am starting to fill out the accounts for the users that will join in the near future. I want to be able to create multiple accounts that will be given over to users once my website is near completion. Therefore, when registering these accounts, the email field and email confirmation should not be required. However, the email field should still be something that can be entered in once registration is complete.
Is this possible? If so, please let me know how. Thank you.
Hi everyone.
I would like To hide the wordpress username in the registration form, and generate the value from what is reported in the full name Field (buddypress field). I have seen from the following link the solution but using email instead of full name.
https://premium.wpmudev.org/forums/topic/how-do-i-remove-the-required-username-field-from-registration?utm_expid=3606929-86.PHoDXYJeQYmWFQIujGOFZg.0&utm_referrer=https%3A%2F%2Fwww.google.it%2FBut I don’t find the right way to get the full name value instead of the email value.
Can You help me please?
ThanksI’m currently using wordpress version 4.6.1, and buddypress version 2.6.2. I am using the Gmail SMTP plugin. I have configured it correctly, and I can send test emails already. My problem is, Buddypress still won’t send activation emails. My question is, what is causing this problem, and how do I fix it?
Hello!
I would like to restrict the registration on my site to only a specific email domain, and only if the member type is X.
My registration form includes the basic name/email/password fields as well as the buddypress base group fields, where the user can choose the member type (set up with plugin BuddyPress Xprofile Member Type Field).Browsing around I found the following code to validate the email domain:
function is_valid_email_domain($login, $email, $errors ){ $valid_email_domains = array("gmail.com","yahoo.com");// whitelist email domain lists $valid = false; foreach( $valid_email_domains as $d ){ $d_length = strlen( $d ); $current_email_domain = strtolower( substr( $email, -($d_length), $d_length)); if( $current_email_domain == strtolower($d) ){ $valid = true; break; } } // if invalid, return error message if( $valid === false ){ $errors->add('domain_whitelist_error',__( '<strong>ERROR</strong>: you can only register using @gmail.com or @yahoo.com emails' )); } } add_action('register_post', 'is_valid_email_domain',10,3 );
1) I tried replacing
$valid_email_domains = array("gmail.com","yahoo.com");
with$valid_email_domains = (".edu");
but it didn’t work – I guess I should add a variable before it, to precise anything.edu as a valid domain? In a function, what would be the way to pass the “anything” argument? (I apologize if I don’t use the proper terms)
Would it be “” ?2) I’ve tried checking how I could add one more validation argument, but I’m a bit lost.
After checking around and in the register.php, I guess I should use something like :$membertype = $_POST ( 'type' => 'recruiter' ) foreach( $membertype as $membertype ) {
So, perhaps something like
function is_valid_email_domain($login, $email, $membertype, $errors ){ $membertype = $_POST ( 'type' => 'recruiter' ) foreach( $membertype as $membertype ) { I don't know what to put here - how to link both arguments "if member type is "recruiter" and if email domain belong to the whitelist then proceed, if not give an error message" $valid_email_domains = (""".edu");// whitelist $valid = false; foreach( $valid_email_domains as $d ){ $d_length = strlen( $d ); $current_email_domain = strtolower( substr( $email, -($d_length), $d_length)); if( $current_email_domain == strtolower($d) ){ $valid = true; break; } } // if invalid, return error if( $valid === false ){ $errors->add('domain_whitelist_error',__( '<strong>ERROR</strong>: you can only register using your .edu email address' )); } } add_action('register_post', 'is_valid_email_domain',10,3 );
I’m probably completely wrong, I don’t know how to code, I’ve just tried putting several things I found together..but if someone has an idea on how I could make it work I would be very grateful
How can I customize this email?
Thanks!
TaraHi, I need to know if there is a code or anything to advise the user after that he submit the registration ( so past the complete registration step ) that an email with a confirmation link has been sent in order to activate the account ect. because at this stage once the registration has complete it is usually redirect to the main page without further notice, as a confirmation email can go into the spam ect. so a text to remind of what to do or to check would be beneficial and so common really…
Thanks
Wordpress 4.5.4 | Buddypress 2.6.2
Hi, i’ve recently installed BP and cant find a solution to changing the font size and style for the profile fields on my ‘register page’. My themes font controls only change the heading text. All help much appreciated!
hello i added buddypress offline registration in my menu but it doesnt show up?
i select that everybody can registrationlogin works perfect and when i activeted the toolbar(on top of the website) i can registration with succes.
Hope you guys can help me out
Greetz
WordPress v4.6.1
BuddyPress v2.6.2
Sites are restricted to client employees, cannot provide link.We are running two separate BuddyPress sites, each on their own install of WordPress. Users are able to register for the site using BuddyPress register and activate pages.
BuddyPress seems to be creating numerous duplicate pages each time a user registers. This is not expected and does not appear to be normal.
In BuddyPress Settings > Pages, the registration pages are assigned as:
Register: page name “Register” slug domain/register/
Activate: page name “Activate” slug domain/activate/There are 150 pages named “Account Activated” with slug domain/account-activated-X, where X is the appended number of the duplicate.
There are 270 pages named “Activate Your Account” with slug domain/activate-X, where X is the appended number of the duplicate.
There are 422 pages named “Create An Account” with slug domain/register-X, where X is the appended number of the duplicate.
There are 218 pages named “Check Your Email To Activate Your Account” with slug domain/register-X, where X is the appended number of the duplicate.
In addition there are also several pages named with a user’s Profile Name and slug domain/profile-name, with numerous duplicate pages /profile-name-X; not all users have had pages created in this manner.
Appreciate any considered thoughts on what is causing this or where we should look to resolve.
Topic: Disable BP reg
Hi,
Because of reasons I am using another plugin for user registration (Gravity Forms).
I still want to use BP for social features.If I leave the registration and activation pages blank I get a warning all the time in the backend.
Can I disable registration through BP entirely?Thanks in advance!