Forum Replies Created
-
AuthorPosts
-
Support
MemberYou can set an account under support(at)user-meta.com
Thanks.Support
MemberHello,
Please add following code to your functions.phpThanks.
add_filter( 'user_meta_field_config', 'user_meta_field_config_function', 10, 3 ); function user_meta_field_config_function( $field, $fieldID, $formName ){ if( !empty($field['required']) || in_array($field['field_type'], array('user_login', 'user_email')) ){ $field['field_class'] = 'your_required_class '; // leave an empty space after classname } return $field; }
Support
MemberAhh, sounds good!
Support
MemberHello, If you don’t want to show avatar on logged in user’s profile, Go to User Meta >> Settings (Login Tab), then under “Logged in user profile settings” remove %avatar% for your desired role and hit save button
Thanks.Support
MemberWe are happy to know you like the plugin. Is it possible to post the url containing issue. Thanks.
Support
MemberThanks for your reporting and suggestion. We’ll check those issues. If you are using 1.1.3 pro, please try latest version.
Support
MemberHello, In which settings you have issues?
Support
MemberHello, Aren’t User Meta menu is visible for you? UMP uses “manage_options” capability to show/hide User Meta menu. By default all admin account have this capability. If you have any role or user management plugin installed in your site please make sure “manage_options” capability is not disabled. Thanks.
Support
MemberHello, In fact with version 1.1.5rc1 we haven’t change existing processes of UMP just adding some new features. BTW, with 1.1.5rc1, you can change appearing text by visiting User Meta >> Settings (Text Tab).
Thanks.November 29, 2013 at 10:05 pm in reply to: Different redirect for different registration forms #4501Support
MemberHello, Please follow http://user-meta.com/howto/form-based-redirection/
Thanks.Support
MemberHello, I have tested with creating a new user. It is working well. Your email verification system is also working well for me. What types of problem you have faced?
Thanks.November 29, 2013 at 9:53 pm in reply to: How to add an image upload for user profile pic on registration #4499Support
MemberHello, Your theme maybe prevent some action hooks to run. none of UMP related js or css files are appeared to added in your site. You can manually add them. http://codex.wordpress.org/Plugin_API/Action_Reference/wp_enqueue_scripts
Or you can send an email to “Contact Us” section with temp admin account if you want us to do it. Thanks.
November 26, 2013 at 5:19 am in reply to: How to add an image upload for user profile pic on registration #4494Support
MemberHello, Are you running latest version of WP? Somehow UMP scripts are fails to load in your site. Please put following code to your functions.php (in current theme directory)
add_action( 'wp_enqueue_scripts', 'add_user_meta_scripts' ); function add_user_meta_scripts(){ global $userMeta; $userMeta->enqueueScripts( array( 'plugin-framework', 'user-meta', 'jquery-ui-all', 'fileuploader', 'wysiwyg', 'jquery-ui-datepicker', 'jquery-ui-slider', 'timepicker', 'validationEngine', 'password_strength', ) ); $userMeta->runLocalization(); }
Thanks.
November 26, 2013 at 4:28 am in reply to: bug with wp_mail() and user_meta_pre_user_update hook #4493Support
MemberHello,
Happy to know you like the plugin.
Most probably you forget to return argument for the filter callback function.add_filter( 'user_meta_pre_user_update', 'sendMailuserUpdate' ); function sendMailuserUpdate($userData){ // Your code... return $userData; }
-
AuthorPosts