Forum Replies Created
-
AuthorPosts
-
Support
MemberHello,
You can use %ID% as Default Value for custom field.Thanks.
Support
MemberHello,
You can use checkbox field and follow http://user-meta.com/howto/category_as_options/
Thanks.Support
MemberHello,
user_meta_after_user_register hook won’t work for changing username. You can use following hook:add_filter( 'user_meta_pre_user_register', 'user_meta_pre_user_register_function' ); function user_meta_pre_user_register_function( $userData ){ $userData[ 'user_login' ] = $_POST['user_email']; return $userData; }
Thanks.
January 8, 2014 at 1:43 am in reply to: Upload field not showing in my profile to add a file there. PLZ HELP #4581Support
MemberHello, In your first screenshot, you have checked “Read only for all user” and “Read only for non admin”. Please uncheck those checkbox and save it.
Support
MemberYes you can, have a try now 🙂
Support
MemberSounds good!
Marking this post as resolved.
Support
MemberHello,
Happy new year and thanks for using pro version.
Please have a try with current dev version. You can find development version on http://user-meta.com/downloads/Support
MemberHello, Please follow http://user-meta.com/howto/add-red-asterisk-required-fields/
Thanks.Support
MemberHello, user listing features are not yet included with UMP, you need to use other user listing plugin for this purpose.
Thanks.Support
MemberHello, this feature was added with current dev version. You can have a try with Development Version.
Please note: As dev version is not well tested, it might contain some bugs.
Thanks.
Support
MemberHello, please open user-meta/views/pro/generateProField.php and locate line number 61 which says:
array_unshift( $fieldOptions, '' );
Replace that line with following line:
$fieldOptions= array_merge(array(''=>''),$fieldOptions);
And for general dropdown, you can use empty option by putting = to options field (e.g.: =,option1,option2)
Those fixes will apply to next release.
Thanks.
Support
MemberSupport
MemberHello, It should work for you now 🙂
Support
MemberHello, for saving custom data, you will need to use wp_update_user
http://codex.wordpress.org/Function_Reference/update_user_meta
Thanks. -
AuthorPosts