Patrik
Forum Replies Created
-
AuthorPosts
-
Hi,
If you can explain the problem with steps to regenerate then it would help me to troubleshoot the issue. Also, make sure if you have caching enabled on your site then please exclude the login and register pages from caching and let me know if it resolves the issue or not.
Regards,
PatrikHi,
As you are using reCaptcha V3, google recommends loading of it’s JS on all pages so we have not restricted it to any particular page and also sometimes there are login/register widgets are displayed on the sidebar or footer then it will not work if we load the JS on specific pages.
Regards,
PatrikHi,
I have checked on your website by creating a page with MailChimp shortcode and found that it is showing error “COMPANY must be provided – Please enter a value” on submission. This means in your list on MailChimp there is a COMPANY field required. You need to make it optional so that users can be added to your MailChimp list.
Regards,
PatrikHi,
Currently, the user email will be added to MailChimp on registration and not after approval of the user account but we will add a task to do this in the future soon.
Regards,
PatrikThis reply has been marked as private.April 1, 2020 at 12:03 pm in reply to: Lots of notice and warning messages after "delete account" #7809This reply has been marked as private.April 1, 2020 at 9:22 am in reply to: Lots of notice and warning messages after "delete account" #7807This reply has been marked as private.April 1, 2020 at 5:46 am in reply to: Lots of notice and warning messages after "delete account" #7803Hi,
It seems you tried to install UsersWP multiple times without properly uninstalling and it may have caused DB fields missing issue. I would suggest you uninstall the UsersWP plugin completely and then install again and create the required custom fields and then check. To do this go to UsersWP->Uninstall and enable Remove Data on Uninstall? and then delete the plugin.
Regards,
PatrikMarch 31, 2020 at 12:40 pm in reply to: Lots of notice and warning messages after "delete account" #7794This reply has been marked as private.This reply has been marked as private.March 30, 2020 at 5:24 am in reply to: Login popup not showing unless clearing browser cookies #7788Hi,
I see the login popup properly. Can you please share a video with me to check the issue? Also, make sure there are no errors in console.
Regards,
PatrikHi,
Can you please check in the userswp folder if there is a file called db-language.php created or not? If the file is created then it will contain all the dynamic strings for the UsersWP plugin. You can go to WPML->String translation and search for the language domain userswp and you will find those strings there.
Regards,
PatrikHi,
Yes, you can add as many roles as you want to allow.
Regards,
PatrikHi,
We have provided hooks and filters to extend the functionality of our plugin and also you can override the templates to modify it as per your requirements. See: https://userswp.io/docs/developers/override-templates/
For remove password link you can either use CSS display:none or override template and remove the link from there. For changing message you can use filter available.
If you explain the thing you want in detail then I can guide you more.
Regards,
PatrikHi,
Please try to add following code in your functions.php file or via code snippet plugin and let me know if it helps:
function uwp_disable_admin_bar() { if (current_user_can('administrator') || current_user_can('editor') ) { show_admin_bar(true); } else { show_admin_bar(false); } } add_action('after_setup_theme', 'uwp_disable_admin_bar');
Regards,
Patrik -
AuthorPosts