Forum Replies Created
-
AuthorPosts
-
Khaled
MemberHello Bud Miller,
Role-based activation is not implemented with UMP. However, you can use following code to your functions.php to overwrite the settings.
add_action('user_register', function($userID) { global $userMeta; $status = $userMeta->getUserRole($userID) == 'advertiser' ? 'pending' : 'active'; update_user_meta($userID, $userMeta->prefixLong . 'user_status', $status); }, 100);
Thanks.
Khaled
MemberHello,
Please try to validate now.
Thanks.
Khaled
MemberHello,
In UMP-1.3, please try with commenting line 14 and 15 in user-meta.php file. In fact, we bump up PHP version because one of the library (reCaptcha) uses higher PHP version. So, PHP-5.3 should work well when reCaptcha is not used. For the test site, try to revalidate your license.
Thanks.
Khaled
MemberHi Valerio,
I’m sorry for late response. Some sample image will be helpful. It will be more helpful if you can able to set a temp admin access for me. You can send credentials to support(at)user-meta.com
Thanks.
KhaledKhaled
MemberHello Everyone,
Please try our dev version. The issue has been solved in the dev version.
@Mark Figlozzi, Thanks for your inspection.Thanks.
Khaled
MemberHi Valerio,
Is it happening in the case of user registration? and can you please tell us which types of fields are inserting duplicate data? Just give some example.
Thanks.
Khaled
MemberHi Mark,
Is it possible to set a temp admin account on your site so that I could have a closer look in the issue? You can use support(at)user-met.com for admin access.
Thanks.
Khaled
MemberHi Lena,
The minimum requirement for UMP-1.3 is PHP-5.5. So, in order to use 1.3, you will need to upgrade your PHP version. If you are going to upgrade your PHP version, I recommend PHP-7.1
Thanks.
Khaled
MemberHi Mark,
With v1.3, please try file upload field. Just want to see if the issue is in avatar or overall file uploading field.
Thanks.
Khaled
MemberHi Mike,
Can you try filtering users based on start date and end date while exporting? Use a short distance of date to see if the issue is coming from some users data or the form itself.
Thanks.
Khaled
MemberHello Mike,
Thanks for your reporting. May I know, which version of PHP you are currently using?
Thanks.
Khaled
MemberHi Lena,
One of the main change since version 1.2 is renaming plugin directory from user-meta to user-meta-pro. If you see the plugin in plugins listing page, please make sure the plugin is activated. otherwise please try to re-install the plugin (version 1.3).
Thanks.
Khaled
MemberHello Sasi,
You can do that by programmatically. Write something similar to your functions.php
add_filter('user_meta_field_config', function ($field, $fieldID, $formName) { if ($fieldID != 'Your field id here') return $field; $field['options'] = [ 'options_1', 'options_2', 'options_3' ]; return $field; }, 10, 3);
Thanks
KhaledKhaled
MemberHi Ben,
Please try version 1.3
Thanks.
-
AuthorPosts