Forum Replies Created
-
AuthorPosts
-
SupportMember
To support(at)user-meta.com
SupportMemberHello, to retrieve value saved by please follow http://codex.wordpress.org/Function_Reference/get_user_meta
Thanks.
SupportMemberHello, can you please send a sample copy of your csv file to check the formation.
SupportMemberHello,
Please try following fixes with version 1.1.3rc2
Open user-meta/controllers/pro/umExportImportController.php then add following line at line 98 and 127 (for version 1.1.3rc2)
ini_set('auto_detect_line_endings', true);
SupportMemberHello,
Password changing for your site doesn’t suppose to have any impact on User Import or listing. Try again with importing your csv file that contain username, email and password then assign them to proper wp field and indicate Import by both username and email.Here is a tutorial video:
Thanks.
February 23, 2013 at 11:55 pm in reply to: How to set certain field to be able to be editted by certain role #3162SupportMemberIn your functions.php file under activated theme directory. Thanks.
February 23, 2013 at 12:20 pm in reply to: add fields dynamically based on the chosen option in another field #3154SupportMemberHello, with version 1.1.3rc2, you can alter any field config as well as value by calling filter hook: “user_meta_field_config”
Here is an example:
Filter Hook to modify field content (options in a select menu)
and you can write your own js to action hook: “user_meta_after_form” this action hook accept one parameter: FormName
Hope this will help.
Thanks.
SupportMemberHello,
Most probably you use form in your login shortcode.
For default login use following shortcode: [user-meta type=”login”]Thanks.
SupportMemberHello, Please upgrade to latest RC release.
Here is change log:
And follow http://user-meta.com/upgrade-notice/ while upgrading.
Thanks.
February 23, 2013 at 3:00 am in reply to: Filter Hook to modify field content (options in a select menu) #3147SupportMemberHello,
With version 1.1.3rc2 you can use filter hook “user_meta_field_config”, here is a quick example:
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 want to control' )
return $field;$field['options'] = "value1, value2, value3";
// "val1=value1, val2=value2, val3=value3"; for key valuereturn $field;
}
For using taxonomy or case of array you can use “implode” function. BTW, with next release direct array can be assigned as option.
Thanks.
- This reply was modified 11 years, 9 months ago by Support. Reason: replace not equal to sign
SupportMemberHello, Please use username field instead of email field and change title to email in your login form. Or if you don’t need any customization on your login form, you can use login shortcode without assigning any form.
Shortcode: [user-meta type=”login”]
This will generate a default login form for you. For login with email go to User Meta >> Settings >> Login Tab then select your desired “User Login By” option.
Thanks.
SupportMemberEmail verification taken place by user-meta/models/pro/umSupportProModel.php method: emailVerification()
and this method called by user-meta/controllers/pro/umPreloadsProController.php methos: loginPageEextraExecutionContent() at line 127 for version 1.1.3rc2
and thanks for your reporting. We’ll check back the issue.
February 23, 2013 at 2:01 am in reply to: wp_verify_nonce – Security Check – not sure why it errors #3144SupportMemberHello, can you please contact with http://user-meta.com/contact-us/ with your site login url. Thanks
SupportMemberHello, UMP not provided user listing feature so far, if you like to show your user listing with filter by meta_key, here is a quick example:
$user_query = new WP_User_Query( array( 'meta_key' => 'country', 'meta_value' => 'USA' ) );
Reff: http://codex.wordpress.org/Class_Reference/WP_User_Query
-
AuthorPosts