Patrik

Forum Replies Created

Viewing 15 posts - 16 through 30 (of 1,063 total)
  • Author
    Posts
  • in reply to: Can't deactivate Mailchimp extension? #8167

    Patrik
    Moderator
    Post count: 1971

    Hi,

    You can remove the field by deactivating the plugin and when you activate the plugin the field will be added again. You can change the label and all from the form builder.

    Regards,
    Patrik

    in reply to: Cant delete/deactivate bio-field #8134

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Can't deactivate Mailchimp extension? #8133

    Patrik
    Moderator
    Post count: 1971

    Hi,

    I have added the add on to your site. Please check and let me know if your issues are resolved or not.

    Regards,
    Patrik

    in reply to: Cant delete/deactivate bio-field #8131

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Profile Posts Tab #8128

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Some strings not translated and avatar problem #8127

    Patrik
    Moderator
    Post count: 1971

    Hi,

    Thanks for reporting this issue. We have fixed it. Regarding your previous issue, we are using the template file as a generic template and that’s why we have kept the string common for all and you can do minor customization by overriding the template file to fix it instead of using the different strings for different templates.

    Regards,
    Patrik

    in reply to: I don't found the option to hide empty tabs #8107

    Patrik
    Moderator
    Post count: 1971

    Hi,

    Yes using shortcodes if no predefined tabs are there is a good idea.

    Regards,
    Patrik

    in reply to: Moderate Addon – Email Control #8104

    Patrik
    Moderator
    Post count: 1971

    Hi,

    Yes, you will need to disable that email and also need to disable email which is sent after moderation approval or rejected which you will get in the email settings.

    Regards,
    Patrik

    in reply to: Can't deactivate Mailchimp extension? #8103

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Moderate Addon – Email Control #8097

    Patrik
    Moderator
    Post count: 1971

    Hi,

    You can disable emails from UsersWP->Emails->User Emails. Let me know if you don’t find the email which you don’t want to send to the user.

    Regards,
    Patrik

    in reply to: Can't deactivate Mailchimp extension? #8096

    Patrik
    Moderator
    Post count: 1971

    Hi,

    If you can provide FTP details in private reply then I can apply some fixes which will be available in the next release of the UsersWP core and Mailchimp add on.

    Regards,
    Patrik

    in reply to: Admin Notification Error #8095

    Patrik
    Moderator
    Post count: 1971

    Hi,

    You can change that from UsersWP->Emails->Admin Emails->Show Advanced->New account registration->Body and change “Dear [#user_name#],” to “Dear Admin,”. We will fix this content in the next release of the plugin.

    Regards,
    Patrik

    in reply to: Role Redirection #8072

    Patrik
    Moderator
    Post count: 1971

    Hi,

    This needs customization and also we are planning for the membership addon which will include this. What you can do is using a similar code for the hook ‘uwp_after_process_register’ using wp_redirect().

    Regards,
    Patrik

    in reply to: Role Redirection #8069

    Patrik
    Moderator
    Post count: 1971

    Hi,

    Can you try following code?

    add_filter('uwp_login_redirect', 'uwp_login_redirect_cb', 10, 4);
    function uwp_login_redirect_cb($redirect_to, $redirect_page_id, $data, $user){
    	if ( isset( $user->roles ) && is_array( $user->roles ) ) {
    
    		//check for admins
    		if ( in_array( 'administrator', $user->roles ) ) {
    
    			$redirect_to = admin_url(); // Your redirect URL
    		}
    	}
        return $redirect_to;
    }

    Regards,
    Patrik

    in reply to: 2 times the same username #8066

    Patrik
    Moderator
    Post count: 1971

    Hi,

    You can use the Activity Log or WP Security Audit Log plugin for the same.

    Regards,
    Patrik

Viewing 15 posts - 16 through 30 (of 1,063 total)