Forum Replies Created
-
AuthorPosts
-
SupportMember
Pending: User not verified their email.
Pending Approval: User verified their email and wait for admin approvalSupportMemberHello,
Put following code to your functions.php
add_filter('user_meta_front_execution_page', create_function('','return "confirm";'));
Thanks.
SupportMemberHello, Put your terms label with link into “Field Title” and put 1= into “Field Options”
you can change “Title Position” to left, right or inline.Thanks.
SupportMemberHello, You can use “user_meta_after_user_register” action hook, that trigger right after user registration. And you can update nicename or display_name by using this hook.
http://codex.wordpress.org/Function_Reference/wp_update_userThanks.
SupportMemberHello, Please follow http://user-meta.com/documentation/field-page-heading/
Thanks.SupportMemberHello, you can comment line 22 and 23 of user-meta/controllers/umShortcodeController.php
Thanks.SupportMemberHello, UMP suppose to create a page named “resetpass”, maybe you have deleted that page or that page is restricted by other plugin.
Please make sure http://example.com/resetpass/ is publicaly accsisable. If “resetpass” is in your trash, recover it or create a new page named “resetpass”.
Thanks.
SupportMemberHello, most probably you have membership or similar type of plugin which redirect from http://gotogittle.com/?page_id=93 to http://gotogittle.com/?page_id=66
When user click verification url they suppose to land on http://gotogittle.com/?page_id=93 for verify their email, but in your site that url is redirected. so user can’t get verified anymore hence they see that error message.
Please make sure url http://gotogittle.com/?page_id=93 is publicly accsiable.
Thanks.
SupportMemberHello, you can send temp admin access to support(at)user-meta.com
Thanks.SupportMemberHello, unfortunately UMP dosn’t support to add custom field in default registration form, you need to use UMP shortcode or template tag to add extra field in registration form. Thanks.
SupportMemberHello, Please try dev version.
Thanks.SupportMemberHello, WP doesn’t store user password as plain text, so you can’t retrieve plain text password. And when you import new user, ump assume provided password is in plain text format, so it rehashed the password.
But in your case, you don’t need to hash the password again. Please paste following codes to your functions.php
add_action( 'user_meta_after_user_import', 'user_meta_after_user_import_function' ); function user_meta_after_user_import_function( $response ){ global $wpdb; if ( empty( $response->user_pass ) ) return; $wpdb->update( $wpdb->users, array( 'user_pass' => $response->user_pass, ), array( 'ID' => $response->ID ) ); }
September 3, 2013 at 3:00 am in reply to: Registration form stopped working after updating to WP 3.6 #4166SupportMemberHello, It might be some js caching issue, please try again with removing your browser cache.
Thanks.SupportMemberHello, make sure “Disable this notification” is not checked and please note email notification is only work with UserMeta shortcode, so if you want custom registration email you need to use user registration page generated by UMP shortcode.
Thanks.
-
AuthorPosts