Forum Replies Created
-
AuthorPosts
-
August 24, 2013 at 6:00 am in reply to: Change comma (,) to semicolumn (;) when Importing Fields!? #4108SupportMember
Hello,
You can hack some code to change default delimiter form comma (,) to semicolon (;)Open user-meta/controllers/pro/umExportImportController.php
and search for fgetcsv() function, line 105, 106, 198 and 207
and replace
fgetcsv( $file );
With:
fgetcsv( $file, 0, ";" );
Thanks.
SupportMemberHello, Nice to know that you like User Meta Pro. Please follow http://user-meta.com/howto/customize-label-login-form/
Thanks.
SupportMemberNice to know you love the plugin.
To customize field look and feel you can assign custom css class to any field and also write css code for individual field. Go to User Meta >> Fields Editor, here you have “CSS Class” and “CSS Style” for each field.If you need to assign more styling to field this hook might be helpful for you:
Thanks.
SupportMemberHello, By default both UMP and WP allow single avater image. However, You can use “File Upload” field as image uploader and show that image in user profile.
Thanks.SupportMemberHello,
1. You can divide your form into three parts by using “Page Heading”. However, page dividation use javascript and so far User Meta plugin does not provide related hook.2. You can create three profile form and redirect from one to another by using UserMetaPro action hook.
This might be helpful for you:
redirect for custom form (not login, registration or profile form)
Thanks.
August 13, 2013 at 5:18 am in reply to: redirect for custom form (not login, registration or profile form) #4076SupportMember@mm
Assume you have two profile form, one for profile completion and other are regular. And you can set redirection for profile completion form by checking form name. Here is an quick example:add_action( 'user_meta_after_user_update', 'user_meta_after_user_update_function' ); function user_meta_after_user_update_function( $response ){ global $userMeta; if( $_POST['form_key'] == 'Your_Form_Name' ) echo $userMeta->jsRedirect( 'http://example.com' ); }
@dhaval
You can check your radio button or any other date which is being posted by accessing $_POST variable and use any “if statement” as you like.Thanks.
SupportMemberHello,
You can manually update the plugin, download new version, deactivate and delete existing version(your data won’t lost) and install newly downloaded one.
Thanks.August 12, 2013 at 4:46 am in reply to: redirect for custom form (not login, registration or profile form) #4069SupportMemberSupportMemberHello,
You can use %site_url%/author/%user_nicename%
Thanks.August 10, 2013 at 5:27 am in reply to: redirect for custom form (not login, registration or profile form) #4063SupportMemberHello, I am not sure what are you trying to accomplish. By UserMetaPro, any form should be login or profile or registration form and redirection occur after completing certain action (login,profile,registration)
If you put your above codes in functions.php (under your active theme), then user will be redirected to home url after verified their account.
Thanks
SupportMemberPerhaps, those code might better suit for your (in functions.php)
add_filter( 'user_meta_field_config', 'user_meta_field_config_function', 10, 3 ); function user_meta_field_config_function( $field, $fieldID, $formName ){ global $userMeta; // Check if current user has admin role and viewing from admin panel if( $userMeta->isAdmin() && is_admin() ){ unset( $field['required'] ); } return $field; }
SupportMemberHello,
Please comments line 72 in user-meta/views/pro/generateProField.php that says:
$fieldReadOnly = 'readonly';
SupportMemberThere might be some js conflict in your frontend. Please check your browser console for error.
SupportMemberHello, here you are.
global $userMeta; echo $userMeta->lostPasswordForm();
-
AuthorPosts