Forum Replies Created
-
AuthorPosts
-
SupportMember
Hello,
form action can be modified by filter hook: user_meta_form_config which is added from version 1.1.3rc2
With version 1.1.3rc2, please write(modify where needed) following codes to your functions.php (under active theme directory)
add_filter( 'user_meta_form_config', 'user_meta_form_config_Function', 10, 2 );
function user_meta_form_config_Function( $form, $formName ){
if( $formName == "Name_Of_Form" )
$form["form_action"] = "Action Name";return $form;
}
For login, create a login form with username and password fields.
And change your login shortcode to [user-meta type=”login” form=”Name of Login Form”]Thanks.
SupportMemberHello, so far UMP doesn’t have any shortcode to to display just one specific user field. You can put it to our feature request section of the forum, so that we can take it to any future release.
You can display any user field by caliing get_user_meta method.
http://codex.wordpress.org/Function_Reference/get_user_metaThanks.
SupportMemberIf anyone have faced “security check” issue on login/lost password page please contact with http://user-meta.com/contact-us/ section with url of your login page. If you are in local server, have a try with live server.
Thanks.
SupportMemberRegistration Shortcode: [user-meta type=”registration” form=”Register”]
SupportMemberHello, form name is case sensitive, use form name in shortcode exactly as form name you have mention in Forms Editor.
Thanks.
December 23, 2012 at 12:36 pm in reply to: Bug (?) for read-only field for non admin-user: a workaround-solution #2698SupportMemberHello,
In fact, we have used “disable” attribute so that form data can’t submit, It was added with UMP early version when proper validation of input not fully implemented. BTW you can use readonly and new release will use readonly too.
Thanks.
SupportMemberSupportMemberjquery slider may be conflicting in your site through your banner slider is using jquery-ui-slider
Please go to user-meta/models/umMethods.php
and comment from line 14 to 17 (for version 1.1.3rc1)Thanks.
SupportMemberHello,
1. Active/Inactive user list isn’t yet added with UMP.
2. Those filter will be available with next version. http://user-meta.com/changelog/Thanks.
SupportMemberHello, please do some more hack,
Open user-meta/assets/js/user-meta.js
and change “.button” to “.postbox” in line 42, 71, 314 (for version 1.1.3rc1)
Thanks.
SupportMemberYes. You can create two field with same meta_key but different settings and use them in separate form. But not in same form.
Thanks.
SupportMemberHello, It might be js conflict. would you please try with a simple registration form with only using 2/3 basic field like username/email and password.
SupportMemberHello, It seems that you have solve the issue in your registration page.
Thanks.
SupportMemberHello,
WP 3.5 has made some major change for internal function call.
Before next release of UMP please apply following fixes:
Open user-meta/views/form.php
Locate line 55 and 67 (for version 1.1.3rc1)
then change class name ‘button’ to ‘postbox’Open user-meta/views/pro/userImport/exportForm.php
Locate line 17 and 26 (for version 1.1.3rc1)
then change class name \”button\” to \”postbox\”Open user-meta/views/pro/settings/backendProfile.php
Locate line 95 and 107 (for version 1.1.3rc1)
then change class name ‘button’ to ‘postbox’Thanks.
-
AuthorPosts