Patrik
Forum Replies Created
-
AuthorPosts
-
Hi,
It seems like there is a conflict with the theme or other plugins which is using the author redirection.
If you have a staging site set up then please provide us the admin and FTP details in private reply so that I can deactivate the plugin and activate one by one to see which plugin is causing the issue without affecting your live site customers.
Regards,
PatrikThis reply has been marked as private.Hi,
We have beta ready and we are testing it and mostly releasing this week or next week. Let us know if you want to try the beta on your site.
Regards,
PatrikHi,
For account page, I can see the form as well with some content before the form.
Regards,
PatrikSending email confirmation in AutoApprove + AutoLogin is not possible in our plugin and it is also not feasible because we need to log in the user immediately after a successful registration. You may do it via customization if you want to force login after activation. We also have add-on https://userswp.io/downloads/moderation/ which allows admin to approve or reject the users after a successful registration. You can have a look if it can help you.
Regarding email, can you explain what you want to do with emails? If you want to change the content then you can do that from settings UsersWP->Emails->clicl on Show Advance button and it will display content to modify.
Regards,
PatrikHi,
1. I am not sure which same email users are getting but if you want to change the email content then you can do it from UsersWP->Emails settings. Can you tell me the content of the email?
2. When there is no password field in the registration form, we generate random password using WP function and display notice on the form so that user can know they need to change the default password to their own password. You can disable this notice using the setting UsersWP->General->Disable system generated password notice. set to tick.
Regards,
PatrikJuly 8, 2019 at 12:28 pm in reply to: Is it possible to Only Show a specific User role in Front-End? #4669Hi,
Can you try the following code in functions.php of currently active theme and let me know if it works for you or not?
add_filter('uwp_excluded_users_from_list', 'uwp_excluded_users_from_list_cb', 10, 1); function uwp_excluded_users_from_list_cb($exclude_users){ $admins = get_users( array( 'role' => 'administrator', 'fields' => array('ID') ) ); $admins = wp_list_pluck( $admins, 'ID' ); if(!empty($admins)){ $exclude_users = array_merge($exclude_users, $admins); } return $exclude_users; }
You can change the role parameter as per your requirements.
Regards,
PatrikThis reply has been marked as private.You have a username field set to inactive in form builder which should be active as it is required field for the registration.
Regards,
PatrikThis reply has been marked as private.July 8, 2019 at 7:21 am in reply to: Duplicate Fields On Field Builder and On Field Entry Pages #4661This reply has been marked as private.This reply has been marked as private.July 5, 2019 at 2:04 pm in reply to: Profile and Header Picture update Capability in the Back end #4651Hi,
Currently, it is not possible to change the profile picture and banner image from the account form as there are no such fields in the form builder. Account form contains custom fields which are used for the registration form or account form added via form builder in admin side.
Regards,
PatrikHi,
It looks like Swift Performance plugin is causing issues. As it is setting the plugin load priorities and due to that UsersWP plugin is not loading properly. When I deactivate Swift Performance plugin then all the UsersWP pages load properly but the other website design changes. I am not sure if you have done any customizations on your site or not. What I can suggest is using any other optimization plugin to fix this issue and we will also test UsersWP with the Swift Performance plugin to check the conflicts and resolve them. I have disabled UsersWP and UsersWP ReCaptcha plugins.
Regards,
PatrikHi,
Can you let us know what is breaking with screenshots if possible? You should update your plugin all the time as we release fixes and new enhancements in all updates. If you have made any changes in core plugin then it may be possible that update will override it and your site will break. So can you please let us know if you have made any changes in core files and if yes then which are the changes you have done.
Regards,
Patrik -
AuthorPosts