Forum Replies Created
-
AuthorPosts
-
Support
MemberHello,
Yes, It is possible with using filter hook “user_meta_field_config”Put and those code to your functions.php (under active theme directory):
add_filter( ‘user_meta_field_config’, ‘user_meta_field_config_function’, 10, 3 );
function user_meta_field_config_function( $field, $fieldID, $formName ){
if( $fieldID != ‘Field ID that you need to control’ )
return $field;
$field[‘field_options’] = array( “yearRange” => “1900:c” );
return $field;
}For more control over date-time field you can apply http://api.jqueryui.com/datepicker/ to $field[‘field_options’] array.
Thanks.
Support
MemberHello,
Have a look on user-meta/framework/models/PluginFrameworkWPSupport.php file and locate method “isUserFieldAvailable”, here you can find the logic used by UMP to validate unique field.Thanks.
Support
MemberCan you please post your site url here or to support(at)user-meta.com ?
Thanks.Support
MemberDirectly downloaded version 1.1.3 from http://user-meta.com/downloads/ isn’t working?
Support
MemberIt seems that, your license is validated but your version is not updated. Please deactivate and delete existing UMP version then download pro version form http://user-meta.com/downloads/ install and activate downloaded version
Thanks.Support
MemberHello, sorry to know you are in trouble, please contact with http://user-meta.com/contact-us/
Support
MemberHello, if you are loggedin as admin and register new user, the user are activated immediately. Please logout and then register new user to check email verification process.
Thanks.Support
MemberHello,
Please use http://user-meta.com/activation for remotely validate your license.Thanks.
Support
MemberPlease clear your browser cache and try again.
Thanks.Support
MemberHello John,
Thank you for your observation. Here is some codes that allow you to change login redirect url based on specific condition. Please make your changes and put those code to functions.php
add_filter( 'login_redirect', 'ump_login_redirect_function1' );
function ump_login_redirect_function1( $redirect_to ){echo $redirect_to;
if( $redirect_to == 'http://example.com/resetpass/' ) // If redirect page is resetpass page
$redirect_to = get_home_url (); // Redirected to home url, you can use something else
return $redirect_to;
}add_filter( 'user_meta_filter_list', 'user_meta_filter_list_function' );
function user_meta_filter_list_function( $list ){
$list[ 'login_redirect' ] = true;
return $list;
}
March 16, 2013 at 1:00 am in reply to: Getting Duplicate Copies Of Email Verification Confirmations #3451Support
MemberWith UMP-1.1.3, your configuration suppose to work.
March 16, 2013 at 12:34 am in reply to: Getting Duplicate Copies Of Email Verification Confirmations #3449Support
MemberIf you Deactivate and Delete then Install and Activate the new version, any field, forms, setting will not lost.
March 16, 2013 at 12:11 am in reply to: Getting Duplicate Copies Of Email Verification Confirmations #3447Support
MemberMaybe you was not completely remove existing ump version when you update the plugin. BTW, UMP-1.1.3 is available now, you can update the version, Please completely remove existing UMP version when updating to new one.
Thanks.
Support
MemberIn fact, WP doesn’t store plain text password to anywhere and for security reason, UMP doesn’t store user password as plain text format. So, plain text password is only available when registration.
You can remove your users and reimport them with checking the sending checkbox.Thanks for your correction.
-
AuthorPosts