Patrik

Forum Replies Created

Viewing 15 posts - 61 through 75 (of 1,063 total)
  • Author
    Posts
  • in reply to: UserWP Recaptcha Add-on is Active Sitewide #7856

    Patrik
    Moderator
    Post count: 1971

    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,
    Patrik

    in reply to: UserWP Recaptcha Add-on is Active Sitewide #7850

    Patrik
    Moderator
    Post count: 1971

    Hi,

    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,
    Patrik

    in reply to: New subscriber doesn't show up in Mailchimp #7828

    Patrik
    Moderator
    Post count: 1971

    Hi,

    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,
    Patrik

    in reply to: New subscriber doesn't show up in Mailchimp #7827

    Patrik
    Moderator
    Post count: 1971

    Hi,

    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,
    Patrik

    in reply to: Translating Field Labels and Form Labels #7811

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Lots of notice and warning messages after "delete account" #7809

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.

    Patrik
    Moderator
    Post count: 1971

    Hi,

    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,
    Patrik

    in reply to: Lots of notice and warning messages after "delete account" #7794

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: disable renew password link, hide pages #7792

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Login popup not showing unless clearing browser cookies #7788

    Patrik
    Moderator
    Post count: 1971

    Hi,

    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,
    Patrik

    in reply to: Translating Field Labels and Form Labels #7787

    Patrik
    Moderator
    Post count: 1971

    Hi,

    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,
    Patrik

    in reply to: WP Admin Bar #7772

    Patrik
    Moderator
    Post count: 1971

    Hi,

    Yes, you can add as many roles as you want to allow.

    Regards,
    Patrik

    in reply to: disable renew password link, hide pages #7759

    Patrik
    Moderator
    Post count: 1971

    Hi,

    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,
    Patrik

    in reply to: WP Admin Bar #7758

    Patrik
    Moderator
    Post count: 1971

    Hi,

    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

Viewing 15 posts - 61 through 75 (of 1,063 total)