Forum Replies Created
-
AuthorPosts
-
SupportMember
Hello,
First of all, custom post type “artist” could not treat as user because they are post. You can create two roles: artist and booker in your site and use two different UMP registration form for them. And after artist registration, you can use UMP hook to create custom post type for each artist.(UMP don’t have visual solution to deal with post), or redirect user to specific page where they can fill up there post data.
Thanks.
January 18, 2014 at 4:29 am in reply to: All fields and forms gone after migrating WP site & updating MySQL database #4629SupportMemberOkay, send your details to support(at)user-meta.com with this topic url.
Thanks.January 18, 2014 at 4:24 am in reply to: All fields and forms gone after migrating WP site & updating MySQL database #4627SupportMemberSo it means, there are empty value in wp_options table with option_name “user_meta_fields”. Maybe your sql file not imported properly.
January 18, 2014 at 4:02 am in reply to: All fields and forms gone after migrating WP site & updating MySQL database #4625SupportMemberPlease run following code to your functions.php (under current theme)
if( is_admin() ){ $fields = get_option('user_meta_fields'); var_dump($fields); }
Then go to your admin dashboard. And see dump values.
SupportMemberHello, Please check http://yoursite.com.com/resetpass/ is accessable as guest user.
Thanks.
January 18, 2014 at 3:38 am in reply to: All fields and forms gone after migrating WP site & updating MySQL database #4622SupportMemberHello, UMP store its field, forms and every other settings to wp_options table. Please check your wp_options table for options_name: user_meta_fields and user_meta_forms
Thanks.SupportMemberHello,
These codes decode and run code from user-meta/models/enc/umProSupportModelEncrypted.php
umProSupportModelEncrypted.php file contain code to validate pro version. There are no harmful code there. You can see content of that file by applying base64_decode() function.
Thanks.
SupportMemberHello,
This post indicate, you are using UMP-1.1.3rc1 but your screenshot not seems like UMP-1.1.3rc1, Could you please tell me which version of UMP and WP you are using right now?Or you can update UMP version to latest one (1.1.5rc1).
Thanks.
SupportMemberHello,
Go to User Meta >> Settings (Login Tab)
then uncheck the checkbox saying “Disable lost password feature” under Login Form. And save your changes.Thanks.
SupportMemberHello,
Thanks for your suggestion. You can configure default login form by using following filter hook:add_action( 'user_meta_default_login_form', 'configLoginForm' ); function configLoginForm( $config ){ $config['before_form'] = '<p>Some text before form</p>'; $config['after_form'] = '<p>Some text after form</p>'; $config['before_button'] = '<p>Some text before button</p>'; $config['button_value'] = 'Changed login text'; $config['input_id'] = 'new_css_id_for_input'; $config['button_class'] = 'new_css_class_for_input'; $config['after_button'] = '<p>Some text after button</p>'; return $config; }
Thanks.
SupportMemberHello,
You can use following code to retrieve user extra field’s data anywhere in your site.
$user_id = get_current_user_id(); echo get_user_meta($user_id, 'apt_id', true);
Thanks.
SupportMemberGo to User Meta >> Fields Editor
create a custom field, enter field title and meta key
put %ID% in “Default Value” (here %ID% is a placeholder for user_id)You can use this field in your form. If user have no value for this field, user_id will show as default value.
Thanks.
January 10, 2014 at 5:16 am in reply to: able to save plain text passwords as a user meta value #4601SupportMemberHello,
Password field from Extra Field store date to usermeta table like other meta field. It doesn’t have any default functionality for WP password system. We introduce it, so that user can be able to use password field to integrate with other system by using hooks. Btw, this field might be removed in future version.Thanks.
SupportMemberHello,
Put following code to your functions.php to enable login_redirect filteradd_filter( 'user_meta_filter_list', 'enable_login_redirect' ); function enable_login_redirect( $list ){ $list['login_redirect'] = true; return $list; }
Thanks.
-
AuthorPosts