Forum Replies Created
-
AuthorPosts
-
KhaledMember
Hi Ifwat,
Could you please post list of theme that you have tried but not works.
Thanks.
KhaledMemberHi,
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.
KhaledMemberHi 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.
KhaledMemberHi 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.
KhaledMemberHi cambridgedon,
Thanks for your fix.
KhaledMemberHi,
Is it possible to send screenshot for both backend settings and backend profile.
Thanks.
KhaledMemberHi,
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.
KhaledMemberHi Willy,
Are you using UMP login shortcode or default WP login?
Thanks.
KhaledMemberTo get email verification link, call following function:
global $userMeta; $user = new WP_User($userID); $url = $userMeta->emailVerificationUrl($user);
KhaledMemberHi 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.
KhaledMemberHello,
Please have a look at http://docs.user-meta.com/howto/#export-file-url-with-user-export
This is available by dev version.
Thanks.
KhaledMemberHi,
Please check, are there any issue with sending email from your server. You can try, sending email for WordPress default reset password.
Thanks.
KhaledMemberHi,
Please try our latest dev version to export large number of users at once.
Thanks.
KhaledMemberHi,
The issue has been fixed in dev version.
Thanks. -
AuthorPosts