Search Results for 'wp user activate'
-
Search Results
-
Hi!
I have WP 5.1.1 and BP 4.2.0 and I am trying to set up a private site.My problem is that I wan´t to activate my users manually and I got stuck. Also I would like to change the text that appears when a person has registered.
I have tried ALL possible ways of settings and I even installed BP Registration Options – plugin.It does not work!!
Also, in the e-mail settings. If the user is not activated directly I could use the opt. for creating an account to send a manual pending e-mail. But then I still need to change the banner and notification text thar appears when user has clicked register.
Ok, so to complicate it further – I do not know how to write code….
Please help me!
Topic: Problem with form
Warning: call_user_func_array() expects parameter 1 to be a valid callback, function 'ghostpool_reset_password_success' not found or invalid function name in /wp-includes/class-wp-hook.php on line 286Error is displayed during user registration although user saw:
Check Your Email To Activate Your Account!
You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.The email message never came.
Also… every email from login form, registration form, reset password form is not sent.
Hi, everybody!
Could you help me to set set display_name = xprofile ‘first_name’ + ‘last_name’ at the user registration?
I’ve tryed this code:function change_user_defaults($user_id) { $user = get_userdata($user_id); $mv_first_name = xprofile_get_field_data( 26, $user_id ); $mv_last_name = xprofile_get_field_data( 11, $user_id ); $name = $mv_first_name . ' ' . $mv_last_name; $mv_login = $user_id . stristr($user->user_email, '@', true); if ($name !== ' '){ $args = array( 'ID' => $user_id, 'display_name' => $name ); wp_update_user( $args ); } } add_action( 'xprofile_updated_profile', 'change_user_defaults' ); /* but this works only after manual BuddyPress profile update */ /* I also tried these hooks too */ add_action( 'bp_core_signup_user', 'change_user_defaults' ); add_action( 'bp_core_activated_user', 'change_user_defaults' ); /* but it didn't work at the user registration */I’d like to create a topic with his name at user registration.
What’s wrong with this code:
function bp_user_fst_topic (){ // get user name $user_data = get_user_by( 'id', bp_loggedin_user_id() )->data; $user_nicename = = $user_data->user_nicename; // create slug $new_slug = 'first-topic-' . $user_nicename; // create topic $post_value = array( 'post_name' => $new_slug, 'post_type' => 'topic', 'post_author' => $userid, 'post_title' => 'first topic', 'post_content' => 'This topic was created when you registered.', 'post_category' => array(1,5), 'tags_input' => array('tag1','tag2'), 'post_status' => 'publish' ); wp_insert_post($post_value); } add_filter( 'bp_core_activated_user', 'bp_user_fst_topic',1 );Could you tell me how to do this..?
WP v. 5.0.3
Directory
root
I did not upgrade from a previous version of WordPress.
WordPress was functioning properly before BuddyPress install.
BuddyPress v 4.1.0
No upgrade.
Other plug-ins: bbPress, bbPress WP Tweaks, Breadcrumb NavXT, BuddyPress, Column Shortcodes, Contact Form 7, Content Aware Sidebars, Mailchimp for WooCommerce (currently not set up), MetaSlider, N-Media WooCommerce PPOM, Shindiri Woo Shop Slider Lite, Widget Options, WooCommerce (currently not set up), WooCommerce Produce Carousel Slider, WooCommerce Services (currently not set up). All are up to date.
Wordpress theme is Vogue.
I’ve not modified the core files in any way that I’m aware of.
No custom functions that I’m aware of.
I do not know how to do .php coding.
I do not have any errors that I am aware of and could not run the check from the tutorial as it didn’t work. Again, do not know .php code.
Current website has been removed from online and is on a private server/localhost. This will change soon as the new site is finished.
Windows.
No BuddyPress theme chosen so maybe default theme selected?
No idea if I overloaded any buddypress template files.Posting above per the “When asking for support” sticky.
I have two problems. The first is that I don’t have a way for users to create groups using the BuddyPress groups system. I can only create groups manually by selecting “Groups” > “Add New” in the dashboard. I do not wish to cater to 100’s of requests for groups, and would like users to have freedom of creation. “Anyone can register” is selected. “User Groups” is selected.
As of right now, my site has a “Social” menu option with sub-menu of all the BuddyPress items. If I click on “Groups” in the sub-menu, I DO NOT get an option to create groups. However, if I click on the main menu “Social,” and look at the right side where my “Groups” widget is, I can click on groups, and get a new page that has a “Create New Group” option that allows anyone to create.
Ok, so why not just add the widget to all the BuddyPress pages? I did. They won’t load. The only way people can add groups is if they go through this widget. Which leads me to my second problem; I am not able to add that widget anywhere else on the website. It will not load on any other of the BuddyPress pages/sub-menu options. In fact, nothing will load.
This was the result of adding “Content Aware Sidebar” plug-in, because I was not able to get website widgets OFF BuddyPress pages even when selected to be off those specific pages. Now, I have removed my main-site widgets from BuddyPress pages, but can’t get BuddyPress widgets on BuddyPress pages. Boy, I hope that was clear.
If I remove “Content Aware Sidebar” (or deactivate it), everything goes back to the way it was. Main website widgets that I don’t want on BuddyPress pages will load on BuddyPress pages, but so will the BuddyPress widgets.
How do I get my BuddyPress widgets to load AND prevent my other widgets from loading on BuddyPress-only pages? Or can I manually insert a “Create Group” link inside the “Groups” page, preferably next to “Invitations” and “Memberships?”
I believe the problem lies with both the “Content Aware Sidebar” plugin and “Widget Options,” which is the one I used to be able to manually select pages. It worked perfectly until BuddyPress was installed. Now, I can’t get choices over BuddyPress-only widgets, but I can get widgets to load at will anywhere else on the site.
Hello, everyone!
After I have filled the registration form WP redirects me to the Homepage. In users list (Dashboard) I don’t see new user too.
Steps which I tried to resolve the problem:
1) WP in simple mode, not WPMS
2) Dashboard – Settings – checkbox “Users can register” checked
3) Disabled all plugins and checked BuddyPress registration function
4) Changed theme to another one. (I use OneCommunity theme by default)
5) Installed WP Mail SMTP (tried to send messages via php wp_mail & smtp). Both variants work for WP, also checked to send messages via Contact form 7 etc. BUT not sending any mail from BuddyPress
6) Tried to reinstall BuddyPress plugin, still not working
7) There is no hosting problems too…
8) I don’t see another user accounts in Users dashboard.
9) Switched between old and new BuddyPress templates…
10) Additional information:
– WP version 4.9.8
– BuddyPress 3.1.0
– Activated plugins (15): Anti-Spam by CleanTalk, bbPress, BuddyPress, Contact Form 7, No Category Base (WPML), OneCommunity Shortcodes, UpdraftPlus – Backup/Restore, UpdraftPlus – Backup/Restore, Wordfence Security, WP Mail SMTP, WP Sitemap Page, WP-Polls, WPBakery Page Builder, Yoast SEO Premium, WP Recaptcha Integration.
11) There is no any php errors (when I enable debug) and js errors in browser console.I can’t find another reason why didn’t registration form not working…. Domain – barbiusa58.info
How I can fix it? Thanks in advance)