Forum Replies Created
-
AuthorPosts
-
SupportMember
Hi,
If you have single site license, first export your UMP data, and withdraw license from your test server. Once you withdraw your license from your test server, you can able to validate your license in your live server.
Thanks.November 24, 2013 at 6:42 pm in reply to: How can I use a custom "Email Is Successfully Verified" page? #4481SupportMemberHello, you can change “resetpass” to something else (e.g “verify”) using “user_meta_front_execution_page” filter hook. Put following code to your functions.php
add_filter('user_meta_front_execution_page', create_function('','return "verify";'));
This will create a page named “verify” and generate new link indicating to that page.
Thanks.SupportMemberHello,
For checkbox you can use:
<?php echo reset(get_the_author_meta('reading_preferences')); ?>
This will show first value of array.
Thanks.SupportMemberHello, It might be plugin conflict, please temporarily disable similar plugin to find out which one is conflicting. Thanks.
November 18, 2013 at 7:38 pm in reply to: How can I use a custom "Email Is Successfully Verified" page? #4470SupportMemberHello, auto login is only working when “User auto activation.” is selected. It will not work when email verification needed with registration.
November 15, 2013 at 6:30 am in reply to: How can I use a custom "Email Is Successfully Verified" page? #4467SupportMemberHello, Try those code:
add_action( 'user_meta_email_verified', 'user_meta_email_verified_redirection' ); function user_meta_email_verified_redirection(){ wp_redirect( 'http://example.com' ); exit(); }
Thanks.
SupportMemberHello, You can export everything from old site and withdraw license. To withdraw license from old site, Go to User Meta >> Settings then click “Update Credentials” and “Withdraw License”.
Once you withdraw your license from old site, you will be able to verify license to new site.
Thanks.SupportMemberWith version 1.1.4.1 UMP overwirte default lost password url (http://example.com/wp-login.php?action=lostpassword) so version 1.1.5rc1 allow user to chosse either default url or UMP generated url (http://example.com/resetpass/?action=lostpassword)
Thanks.SupportMemberimg tag suppose to work. Select e-mail format as “HTML” and put html img tag, make sure your email client is allow image showing. Thanks.
November 12, 2013 at 6:46 am in reply to: Cannot Activate Plugin: license already used in localhost #4458SupportMember@webplusdev, Your account has been reset. Thanks
SupportMemberHello, for exclude some category or more filter, please have a look on http://codex.wordpress.org/Function_Reference/get_categories
For “Choose a Category”
replace$output = null;
with
$output = "0=Choose a Category,";
For more custom options:
$field[‘options’] = “English,German,French”;Thanks.
SupportMemberHello,
Please have a look on http://user-meta.com/forums/topic/edit-registration-form-html-output/#post-4386 to let dropdown to pull category.You can use same hook (user_meta_field_config) to populate dropdown with any data. you can pass array with key and value to or string (e.g key1=value1,key2=value2) to $field[‘options’]
Thanks.
SupportMemberHello, there isn’t any know circumstance when user deactivated automatically. However, you can activate users from user listing page. Thanks.
November 6, 2013 at 5:29 am in reply to: Cannot Activate Plugin: license already used in localhost #4446 -
AuthorPosts