Forum Replies Created
-
AuthorPosts
-
sourov aminMember
Hello,
Is it showing even if you are logged in your site?
Thanks.
sourov aminMemberHello,
reCaptcha V3 feature is not yet available in User Meta Pro.
Please write this in the “Feature Requests” section and we will work on it.Thanks.
sourov aminMemberHello,
All the values of the multi-select field are stored in the array data type. That is why you are getting the “array” text. To get each data of a multi-select field you can use a simple loop like below:
foreach( $curauth->memb_sectors as $key=>$value ) { echo $value; echo '<br>'; }
Also, with
print_r()
orvar_dump()
instead of echo, you can display the array data in a readable format.Thanks.
sourov aminMemberHello,
Although there is no direct feature available for this but a piece of code can do the job for you.
add_action('user_register', 'userAutoActivationModified', 20); function userAutoActivationModified( $userID ){ global $userMeta; $roleToAutoActive = 'subscriber'; $role = $userMeta->getUserRole( $userID ); if ($roleToAutoActive == $role) update_user_meta($userID, 'user_meta_user_status', 'active'); }
Put the following code in your functions.php (under current theme) or any plugin file. Don’t forget to replace
$roleToAutoActive = 'subscriber';
with your targeted role which shall activate automatically.Please note, although the user will be activated, they will see default admin approval required message and an email of approval will be sent straightway if it is enabled. To get rid of the default admin approval required message, use ‘Do not use AJAX’ checkbox and use custom redirection where you can write something to show some direction to the user.
sourov aminMemberHello Riaz,
Sorry for not getting any response.
user_meta_admin_email_recipient
filter hook is available to solve your mentioned problem.
You can modify your targetted roles and individual email address through the hook.Add something like the following code in the functions.php (under current theme) or any plugin file.
add_filter( 'user_meta_admin_email_recipient', 'changeEmailRecipient' ); function changeEmailRecipient( $pre ) { $emails = (array) $pre; $users = get_users( array( 'role__in' => [ 'administrator', 'your_role' ] ) ); foreach ( $users as $user ){ $emails[] = $user->user_email; } // add individual email array_push($emails,'your_email'); return array_unique( $emails ); }
sourov aminMemberHello,
I am not totally clear about your query. Can you elaborate on this, please?
If you have the edit access, just fill these fields or upload image and hit ‘Update Profile’. To get and fill these fields data from frontend, add these fields to a profile/registration form and make these fields as ‘Shared Field’.
Thanks.
sourov aminMemberHello,
Go to ‘User Meta >> Settings >> Backend Profile’ and drag fields from ‘Available Fields’ drop to ‘Fields in backend profile’ box in your preferred position. You can reorder these fields by dragging and placing. Please note, you have to make a field as ‘Shared Field’ to add that in the backend profile.
To hide specific fields from backend profile just select the fields in ‘Hide WordPress default fields’ section. ‘Save Changes’ and you are done.
Thanks.
sourov aminMemberHello Doron,
‘Custom Field’ is on the “Extra Fields” section.
But this is not available in the free version.
I am afraid you have to get the Pro version of the plugin to unlock this feature with many others.
This might be helpful: https://user-meta.com/pricing/Thanks.
sourov aminMemberHello,
User Meta store user data against meta key following the WordPress standard.
While importing any data you have to assign an existing field or a meta key for each column to make sure it is stored where you actually want. Without assigning, it takes a close matched value or makes a new shared field.To store xprofile field data correctly, assign the correct xprofile meta key.
Thanks.
sourov aminMemberHello Miguel,
Can you describe a little more about the issue?
What happens when user edit or update their profile?Thanks.
sourov aminMemberHello deniscgn,
Activate “BuddyPress xProfile Export” from “User Meta >> Add-ons” menu. You will get the xProfile fields in UMP export tool then.
Thanks.
sourov aminMemberHello Stefan,
Try setting up login redirection from the “Settings” menu.
Thanks.
sourov aminMemberHello,
This feature will be available in the upcoming release of the plugin as a free add-on.
Thanks.
sourov aminMemberHello,
1. Please update UMP to the latest version.
1. It can be a plugin conflict issue. Try temporarily deactivate all other plugins and check whether it is working or not.
If that does not solve the problem, can you please set a temp admin and send the account credentials to support[at]user-meta.com so that the issue can be checked.
Thanks.
-
AuthorPosts