Forum Replies Created
-
AuthorPosts
-
Support
MemberPending: User not verified their email.
Pending Approval: User verified their email and wait for admin approvalSupport
MemberHello,
Put following code to your functions.php
add_filter('user_meta_front_execution_page', create_function('','return "confirm";'));
Thanks.
Support
MemberHello, 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.
Support
MemberHello, 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.
Support
MemberHello, Please follow http://user-meta.com/documentation/field-page-heading/
Thanks.Support
MemberHello, you can comment line 22 and 23 of user-meta/controllers/umShortcodeController.php
Thanks.Support
MemberHello, 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.
Support
MemberHello, 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.
Support
MemberHello, you can send temp admin access to support(at)user-meta.com
Thanks.Support
MemberHello, 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.
Support
MemberHello, Please try dev version.
Thanks.Support
MemberHello, 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 #4166Support
MemberHello, It might be some js caching issue, please try again with removing your browser cache.
Thanks.Support
MemberHello, 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