Forum Replies Created
-
AuthorPosts
-
Khaled
MemberHi Ifwat,
Could you please post list of theme that you have tried but not works.
Thanks.
Khaled
MemberHi,
Is it a very large form? Please try with a small form first.
And also check if there are any special character in your form for debugging purpose.Thanks.
Khaled
MemberHi Mariana,
Please make sure to fill-up meta_key for extra fields.
If meta key is already set, is it possible to set a temp admin account to inspect the issue on your site. If so, please send an email to support(at)user-meta.com with an admin account.
Thanks.
Khaled
MemberHi Willy,
Unfortunately, by default login with email by default wp login is not supported. Later, I shall provide you code example to make it happens with default.
Thanks.
Khaled
MemberHi cambridgedon,
Thanks for your fix.
Khaled
MemberHi,
Is it possible to send screenshot for both backend settings and backend profile.
Thanks.
Khaled
MemberHi,
With WP4.4, expand arrow is not visible. Try to click top right part for heading to expand each panel. The issue has been fixed in dev version. You can try our dev version too.
Thanks.
Khaled
MemberHi Willy,
Are you using UMP login shortcode or default WP login?
Thanks.
Khaled
MemberTo get email verification link, call following function:
global $userMeta; $user = new WP_User($userID); $url = $userMeta->emailVerificationUrl($user);
Khaled
MemberHi James,
Here is an example to deactivate a user and sending deactivation email.
function userDeactivateAndSendEmail($userID) { global $userMeta; // Deactivate user. you can also use 'pending' update_user_meta($userID, 'user_meta_user_status', 'inactive'); // Sending deactivation email. $user = new WP_User($userID); $userMeta->prepareEmail('deactivation', $user); }
Hope, it helps.
Thanks.
Khaled
MemberHello,
Please have a look at http://docs.user-meta.com/howto/#export-file-url-with-user-export
This is available by dev version.
Thanks.
Khaled
MemberHi,
Please check, are there any issue with sending email from your server. You can try, sending email for WordPress default reset password.
Thanks.
Khaled
MemberHi,
Please try our latest dev version to export large number of users at once.
Thanks.
Khaled
MemberHi,
The issue has been fixed in dev version.
Thanks. -
AuthorPosts