Forum Replies Created
-
AuthorPosts
-
KhaledMember
Hello Lars,
Member listing feature is not yet added with User Meta Pro. However we have plans to add this near future.
User Meta store all user data or user extra data as default wordpress format. So it is possible to integrate any other member listing plugin who have use default WP format to show user’s data.
Thanks.
KhaledMemberHello,
Did you use user-meta shortcode for creating your registration page? Those email suppose to send with only by user-meta shortcode.If you are using user-meta shortcode, do both admin and user get any mail upon new user registration?
If not make sure, E-mail notification for registration is not disable for user registration.If user can get email but no activation link. Go to User Meta >> Settings >> Registration and select “Need email verification.” and also add “%email_verification_url%” placeholder to your email template.
Let me know in which stage you are in stuck…
Khaled Saikat
KhaledMemberMany thanks for share your Italian translation. We’ll add this translated file from next release.
Khaled
July 25, 2012 at 11:16 pm in reply to: Link that just shows all unverified registrants to blog … #1773KhaledMemberHello,
For email notification with approval link:
Go to User Meta >> Settings >> Registration (Tab) and choose “Need admin approval.” or “Need both email verification and admin approval.” and save the changes.If you activation link is not still available with incoming email then follow this:
Go to User Meta >> E-mail Notification >> User Registration Email >> Admin Notification and select your desired role and add “%activation_url%” placeholder to the body.List of unverified users:
this feature is not currently available. If you have WP coding knowledge you can do it yourself.
Following code may be helpful for you.
global $userMeta;$users = get_users( array(
'meta_key'=>'user_meta_user_status',
'meta_value'=>'inactive' // Use "inactive" or "pending" both value refer to inactive users
));foreach($users as $user){
$url = $userMeta->userActivationUrl( 'activate', $user->ID ); // You may use "deactivate" for deactivation link
// Write your custom code to show the link
}
Thanks.
KhaledMemberHello,
Year navigation is currently not available. We are hopeful to add this with next release.Thanks.
KhaledMemberHello,
Would you please post your site url here.Thanks.
KhaledMemberHello,
1.
Here are messages after registration:
If User auto activation: Registration successfully completed.
If Need email verification: We have sent you a verification link to your email. Please complete your registration by clicking the link.
If Need admin approval: Please wait until an admin approve your account.
If Need both email verification and admin approval: We have sent you a verification link to your email. Please verify your email by clicking the link and wait for admin approval.If Registration Redirection set to default, user won’t redirect after registration.
2.
UserMeta doesn’t provide exactly what you need as transit. But if you set login redirection to ‘Referer’, it will bring your users to same url that were used for login.Thanks
July 21, 2012 at 1:32 am in reply to: How to Show curent value of extra field in "profile" form #1744KhaledMemberHello, Did you forget to enter meta_key name for extra fiels?
KhaledMember@bluantinoo,
There is a checkbox at User Meta Import page “Overwrite existing users”. If you check that checkbox then, user data will be overwritten (username and email won’t overwrite if newly imported one already exists). And if checkbox remain uncheck then existing users will skipped.Thanks.
July 20, 2012 at 11:59 pm in reply to: feature request: ability to add fields to standard register form #1741KhaledMemberHello,
Thanks for your suggestion. We’ll consider your this.KhaledMemberHello Eberhard,
Sorry for late response.
1. You can set User Meta >> Settings >> redirection >> Registration Redirection to Default (no redirection).
2. User Meta >> Settings >> redirection >> Login Redirection (Referer) may be brings little solution for you.
Thanks
KhaledMemberHello,
Please, open /user-meta/framework/helper/uploader.php by any ftp text editor.
Replace line 33 (for version 1.1.2)
$pluginFramework->verifyNonce();
with:
$pluginFramework->verifyNonce(false);
Thanks.
KhaledMemberHello,
Just find the line (line 30 or near for other version):
$userMeta->verifyNonce( false );
and comments them by:
//$userMeta->verifyNonce( false );
Thanks.
KhaledMemberHello,
Please use small-letter for “Registration”.
type="registration"
Thanks
-
AuthorPosts