Forum Replies Created
-
AuthorPosts
-
SupportMember
Hello,
You can use %ID% as Default Value for custom field.Thanks.
SupportMemberHello,
You can use checkbox field and follow http://user-meta.com/howto/category_as_options/
Thanks.SupportMemberHello,
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 #4581SupportMemberHello, 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.
SupportMemberYes you can, have a try now 🙂
SupportMemberSounds good!
Marking this post as resolved.
SupportMemberHello,
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/SupportMemberHello, Please follow http://user-meta.com/howto/add-red-asterisk-required-fields/
Thanks.SupportMemberHello, user listing features are not yet included with UMP, you need to use other user listing plugin for this purpose.
Thanks.SupportMemberHello, 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.
SupportMemberHello, 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.
SupportMemberSupportMemberHello, It should work for you now 🙂
SupportMemberHello, for saving custom data, you will need to use wp_update_user
http://codex.wordpress.org/Function_Reference/update_user_meta
Thanks. -
AuthorPosts