Forum Replies Created
-
AuthorPosts
-
SupportMember
Hello, please try “Development Version” from http://user-meta.com/downloads/
Thanks.SupportMemberHello, please try “Development Version” from http://user-meta.com/downloads/
Thanks.SupportMemberHello, please try “Development Version” from http://user-meta.com/downloads/
Thanks.SupportMemberHello, sorry for late response.
Please add following code to your functions.php (under your currently active them)
add_filter( 'registration_redirect', 'custom_registration_redirect' );
function custom_registration_redirect(){
return 'http://www.air.org.au/members/distributor-membership-payment/';
}
Those code will force all user to redirect http://www.air.org.au/members/distributor-membership-payment/ after registration.
Let me know if this is working for you.
Thanks.
SupportMemberHello, Please download version 1.1.3 from http://user-meta.com/downloads/
Deactivate and delete existing version of User Meta plugin then install newly downloaded version.Thanks.
SupportMemberHello, Only extra field with meta_key will available for WP profile page. Do you have extra field with meta_key in User Meta >> Fields ?
Thanks.
SupportMemberHello,
You can use redirection feature of UMP to redirect user to home page after login.
Go to User Meta >> Settings (Redirection Tab)
select Home for login redirection and hit save button.Thanks.
SupportMemberHello,
A page named “resetpass” Title: “Lost password” suppose to generate automatically when your activate UMP. Please check the is exists in your WP pages section. If not please create a page with slug “resetpass”If there are any membership or page restriction plugin installed in your system, please make sure “resetpass” page is publicly accessible.
Thanks.
SupportMemberHello,
Please disable and delete existing UMP version then download the plugin from http://user-meta.com/downloads/ and install the downloaded version.Thanks.
SupportMemberHello,
If you manually update the plugin please make sure old version was completely deleted. If you are not sure. Just disable and delete existing UMP version and then download version 1.1.3 form http://user-meta.com/downloads/ and install newly downloaded version.For new user registration, which error message are showing?
SupportMemberHello,
To disable lost password feature, Go to User Meta >> Settings >> Login Tab
Then check “Disable lost password feature” checkbox and save your changes.
Thanks.SupportMemberHello,
There is a checkbox “Disable this notification” with every email templates, please uncheck this checkbox if it is checked. And please note that, custom email notification only available if you use user-meta shortcode for user registration or profile update.
Thanks.
SupportMemberPlease follow http://user-meta.com/faq/ if still you are in trouble.
SupportMemberHello,
You can use action hook to redirect user after profile update.Here is an example.
add_action( 'user_meta_after_user_update', 'user_meta_after_user_update_function' );
function user_meta_after_user_update_function( $response ){
global $userMeta;
echo $userMeta->jsRedirect( 'http://example.com' );
}
-
AuthorPosts