Forum Replies Created
-
AuthorPosts
-
January 24, 2013 at 2:01 am in reply to: "Email Not Found" When Using Email Verification For Registration #2916January 24, 2013 at 1:52 am in reply to: "Email Not Found" When Using Email Verification For Registration #2914SupportMember
Is it possible to set an admin account in you site for me?
January 24, 2013 at 1:34 am in reply to: "Email Not Found" When Using Email Verification For Registration #2912SupportMemberIn fact, we didn’t heard about this issue before. However Email verification link generation are differ from version 1.1.2 to new one, so new one was suggested.
In your first post, it seems that, @ sign was missing for email with verification link.
action=email_verification&email=emergentinchotmail.comDid you tried with new user registration with latest version? or just try to validate that link?
You can use shortcode: [user-meta type=”login”]
January 24, 2013 at 1:05 am in reply to: "Email Not Found" When Using Email Verification For Registration #2909SupportMemberYes. First completely remove existing version, then install and active new version. Please clear your browser cache before updating any fields, forms or user meta settings.
It is importent because, new javascript code added with new version, if you don’t update your browser cache, new js file will not loaded immediately, so there will some new method missing while you try to update any user-meta data.
No problem for extra question 🙂
January 24, 2013 at 12:56 am in reply to: "Email Not Found" When Using Email Verification For Registration #2907SupportMemberNo, you don’t need to rebuild any form or fields. Jast follow http://user-meta.com/upgrade-notice/ while upgrading.
Thanks.
SupportMemberHello,
You can use get_user_meta function to retrieve user data, In case of checkboxes, radio, select dropdown return data will be an array. You can show your array data as you need.
Here is a quick example:
$value = get_user_meta( $user_id, 'meta_key', true);
if( is_array($value)){
$value = implode(", ", $array);
}
echo $value;
Thanks.
January 23, 2013 at 11:49 pm in reply to: "Email Not Found" When Using Email Verification For Registration #2903SupportMemberHello, Please have a try with latest RE release. Thanks.
SupportMemberCan you please send a sample copy of your csv file to support@user-meta.com?
Thanks.
SupportMemberHello,
For version 1.1.2, user-meta/controllers/pro/umUserImportController.php is handling all user import stuff
Method: importForm is generating import form by rendering file: user-meta/views/pro/userImport/formStep2.phpActual import has done by method: userImport
You can send us your sample csv file to supportATuser-meta.com
Thanks.
SupportMemberSo far, there is no email change verification by default. UMP provide profile update notification email. You can set email content through UMP Email Notification Area, If user update profile as well as change their email, both admin and user can get email notification.
If you really need verification on email change, We have action and filter hook: user_meta_after_user_update, user_meta_pre_user_update by which you can modify the behavior by writing own codes.
Thanks.
SupportMemberHello,
Thanks for your interest about User Meta Pro.
1. It is possible to set user role while they are registering to site. It is also possible to set dynamic role, but you need to use filter hook for that, You can specify domain based role by using our filter hook: user_meta_field_config
2. UMP provide email verification feature on user registration. So if someone intend to use “XYZ@mycompany.com”, can not verify their email if they are not. And role is assigned when they are registering(although admin can change other user role anytime). So if user change their email, it won’t reflect to role.
Thanks.
SupportMemberPlease note, for version 1.1.3rc2, we release user-meta.pot file but user-meta-de_DE.po is not fully translated (New text added in version 1.1.3rc2 were not translated with german translation file).
SupportMemberHello Andi,
Please upgrade your version to latest one and follow http://user-meta.com/upgrade-notice/
Let us know if you have still facing any issue.
Thanks.
SupportMemberHello Andi,
Thanks for using the plugin for long time.
UMP use WP standerd function update_option() to store data to wp_options table. And update_option function use $wpdb->update() method (which execute mysql update command) for storing data to database. So the issue is not related with User Meta Pro plugin. It is related to your server or mysql configuration.
If you want us to check the issue in your site, please contact to http://user-meta.com/contact-us/ with an admin account for your site.
Thanks.
SupportMemberHello,
\user-meta\views\pro\generateField.php not should exists with version 1.1.3rc2, It seems that, you have upgrade your version before completely removing old one.Please disable and completely remove existing version and then install the latest version again.
Thanks.
-
AuthorPosts