Search Results for 'registration'
-
Search Results
-
Topic: custom member directory
wordpress Version 4.9.5, buddypress Version 2.9.4 theme: sweetdate
hi i would like to have an additional Member Directory (keep default, and have a new page with a custom member directory).
In this new Custom Member Directory, I would like to filter users base on the fields they had selected upon registration. Basically create a list of Member Suggestions.
Any idea on how to make this happen?
Topic: Missing members
Hi there.
Wordpress: 4.95
BuddyPress: 2.94
All other plugins are up-to-date.Website: https://www.potatoesandrice.com
This is an intermittent issue, so maybe difficult to resolve. I’m hoping you may have some ideas or may have run across this before and therefore have some suggestions 🙂
Buddypress came bundled in my WordPress theme (Sweetdate) by SeventhQueen.
I have a database of users – currently close to 900 members. When I have a new user register, I receive an email notifying me of their registration along with their username and email. I copy their username and go to the WordPress backend > Users and do a search for the username to edit their status. Now here’s the intermittent issue. I’d say 1 out of 10 (approx.) emails that I get, I am unable to find the user in the user area of the backend or in the front end as well. Interestingly enough, I have another plugin (Newsletter) that collects user info at signup and that plugin DOES have the missing user details.
I contacted SeventhQueen first and they gave the following response:
– You’re having database continuity issues at the host level, either your database is failing intermittently or your host is restoring temporary backups of your database.
So, next I contacted my host (siteground) and they gave the following response:
I am unable to find anything in the apache error logs that can indicate an issue with the users.
Most likely the issue is coming from the plugin responsible for the user registrations.
I know normally we would disable other plugins to see if there is any kind of conflict, but since this issue is so intermittent, that would mean disabling my site fo a long time and not really knowing if it has been resolved.
Thanks in advance for any help 🙂
Abe
Hello,
I created some fields in the users -> profile fields section, the problem is that all those fields that I created appears in the registration form and I don’ want that, I want that the user fill those fields after the registration directly in his profile page if he wants to.
Is there another option that making those fields optional and disabling their visibilities with the css in the registration form ?
thank you for your help
Hi Team,
When we register through budypress default registration through one of my client site
http://www.learn.awecademy.org.
Everytime i am getting email with header via server host name(info@mydomain.com via server_hostname).
What i have done till now.
In Change My Child theme.
1)add_filter( ‘bp_email_set_from’, ‘filter_bp_email_set_from’, 10, 4 );
2)Set WP SMTP For email.
3)add_filter( ‘wp_mail_from’, ‘wpb_sender_email’ ); –add my theme function.php
4)add_filter( ‘wp_mail_from_name’, ‘wpb_sender_name’ );–add my theme function.php
5)Also WordPress Include Plugable.php i have remove the from name and email and set admin_email
Please suggest what i have to do to resolve this problem.
Regards
Subhajit Sadhukhan
Elagoon Development.Hi,
I’m new to buddypress and I was trying to add the xprofile fields to admin email after activation.
I found this code and I’m desperately trying to figure out how to make it work.
/* Plugin Name: Custom New User Email Description: Changes the copy in the email sent out to new users */ // Redefine user notification function if ( !function_exists('wp_new_user_notification') ) { function wp_new_user_notification( $user_id, $plaintext_pass = '' ) { $user = get_userdata( $user_id ); // The blogname option is escaped with esc_html on the way into the database in sanitize_option // we want to reverse this for the plain text arena of emails. $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES); // find the profile field for referrer //$field1 = xprofile_get_field_data( 'Referrer', $user_id ); $field1 = xprofile_get_field_data( 'field_id=1', $user_id ); $field2 = xprofile_get_field_data( 'field_id=2', $user_id ); $field3 = xprofile_get_field_data( 'field_id=3', $user_id ); $field4 = xprofile_get_field_data( 'field_id=4', $user_id ); $field5 = xprofile_get_field_data( 'field_id=5', $user_id ); $field6 = xprofile_get_field_data( 'field_id=6', $user_id ); $field7 = xprofile_get_field_data( 'field_id=32', $user_id ); $field8 = xprofile_get_field_data( 'field_id=8', $user_id ); $field9 = xprofile_get_field_data( 'field_id=9', $user_id ); $field10 = xprofile_get_field_data( 'field_id=10', $user_id ); $field11 = xprofile_get_field_data( 'field_id=13', $user_id ); $field12 = xprofile_get_field_data( 'field_id=16', $user_id ); $field13 = xprofile_get_field_data( 'field_id=25', $user_id ); $message = sprintf(__('New user registration on your site %s:'), $blogname) . "\r\n\r\n"; $message .= sprintf(__('Username: %s'), $user->user_login) . "\r\n\r\n"; $message .= sprintf(__('E-mail: %s'), $user->user_email) . "\r\n\r\n"; $message .= sprintf(__('First Name: %s'), $field1) . "\r\n"; $message .= sprintf(__('Last Name: %s'), $field2) . "\r\n"; $message .= sprintf(__('Job Title: %s'), $field3) . "\r\n"; $message .= sprintf(__('Company: %s'), $field4) . "\r\n"; $message .= sprintf(__('Address 1 : %s'), $field5) . "\r\n"; $message .= sprintf(__('Address 2 : %s'), $field6) . "\r\n"; $message .= sprintf(__('Country : %s'), $field7) . "\r\n"; $message .= sprintf(__('City: %s'), $field8) . "\r\n"; $message .= sprintf(__('Zip: %s'), $field9) . "\r\n"; $message .= sprintf(__('Phone: %s'), $field10) . "\r\n"; $message .= sprintf(__('Fax: %s'), $field11) . "\r\n"; $message .= sprintf(__('Relationship: %s'), $field12) . "\r\n"; $message .= sprintf(__('Interest: %s'), $field13) . "\r\n"; @wp_mail(get_option('admin_email'), sprintf(__('[%s] New User Registration'), $blogname), $message); if ( empty($plaintext_pass) ) return; $message = sprintf(__('Username: %s'), $user->user_login) . "\r\n"; $message .= sprintf(__('Password: %s'), $plaintext_pass) . "\r\n"; $message .= wp_login_url() . "\r\n"; wp_mail($user->user_email, sprintf(__('[%s] Your username and password'), $blogname), $message); } }
Please help.
Thank you so much
Dennis
I’m sure this has came up before, however I haven’t found a recent search result that works.
When BuddyPress is enabled it overrides the default WP registration page.
How can I prevent this from happening?
Topic: Registration Page 404
I update my sites plugins and core whenever there are updates. All of a sudden, I started having issues with all BuddyPress pages and I didn’t know why.
First I was getting 404 errors when going to ALL BuddyPress pages. I managed to find a fix which was to give each user the role of “Customer” which is a custom user role I made with User Role Editor. I don’t know why this would be the case or how it changed.
Now that people can go to those pages, unregistered, non-logged in users cannot register!
I have tried creating a brand new page called register with vanilla settings and only a title and being able to go to it normally without an error. When I select ANY page through the BuddyPress ‘Pages’ options for registration, I get a 404 error.
Please help! I can’t register any new users and this looks bad that I can’t fix it!!!
Thanks,
Buddy
Topic: create a new user type
Hi
In buddypress , I want to create two different user types. For example, Staff and Students. I want let them to register by selecting appropriate user type during the registration process.
also I want let them to select their user type during the log in process .
Can somebody help me on this please?
Thank you
LukeTopic: Fields on single line
Hi,
I’ve created some custom fields for user profile and tryed some themes.At registration page I have dates and radio that always goes on new line (also date day,year and month are really too large).
What can I do?
Is also possible to have profile fields under (and not beside) account data?
Thanks!