Forum Replies Created
-
AuthorPosts
-
December 3, 2012 at 9:37 pm in reply to: How can I personalized the page of email verifications with more content. #2560SupportMember
Hello,
If you need email verification on user registration, just select “Need email verification” option from User Meta >> Settings (Registration Tab)
You can personalize email sent after email verification process from User Meta >> Email Notification.SupportMemberHello,
For version 1.1.3rc1 open /user-meta/models/pro/umAjaxProModel.php
and replace line 128 and 128
foreach( $fieldsSelected as $key => $val )
$userData[ $key ] = @$user->$key;
with
foreach( $fieldsSelected as $key => $val ){
$fieldValue = !empty( $user->$key ) ? $user->$key : null;
if( is_array( $fieldValue ) || is_object( $fieldValue ) )
$userData[$key] = implode( ',', $fieldValue );
else
$userData[$key] = $fieldValue;
}
This fixes will be apply from version 1.1.3rc2
Thanks.
SupportMemberHello,
Which error message you are experiencing?
In your csv file, username field is not present, so you can select “Identify Uniquely”: “By Email” while importing, so UMP will automatically generate username based on email.
If you don’t want your user to inform by email now, just don’t check “Send email to new user.” checkbox while importing.
“Forced to create their own password when first login” option is not available with UMP.
Thanks.
SupportMemberIt seems that your licence is validated. You might need to reinstall the plugin.
To complete reinstallation:
Disable and delete current UMP version.
Then download version 1.1.3rc1 and install-activate it.Thanks.
SupportMemberNovember 26, 2012 at 7:34 pm in reply to: Captcha not working, form not visible if captcha is used #2501SupportMemberHello, Other captcha plugin installed in your system might be conflicting. Please temporary disable other captcha plugin in your system to find out which one is conflicting.
Thanks.
SupportMemberRemote pro activation support added from version 1.1.3rc1. Did you try activate your version remotely with UMP version 1.1.3rc1?
SupportMemberHello,
You need to validate your licence for using pro version. You can validate your licence from User Meta >> Settings.
If this process fail for you you can try http://user-meta.com/activation/ too.
Thanks.
SupportMemberAre you using version 1.1.3rc1? If not please try with this version. Remote activation added with version 1.1.3rc1.
SupportMemberHello,
Please login to http://user-meta.com and follow instructions of http://user-meta.com/activation/
Thanks.
November 21, 2012 at 12:26 am in reply to: Email notification containing custom checkbox fields #2478SupportMemberHello,
For version 1.1.2-pro and 1.1.3rc1, open /models/pro/umSupportProModel.php and insert following lines of code between line number 355 and 356.
if( is_array( $replacements[ $key ] ) ){
$replacements[ $key ] = implode( ',', $replacements[ $key ] );
}
Thanks.
SupportMemberHello, You can temporarily rename user-meta directory in your server, then can able to login through wp-login.php
After login, go to Plugins menu, it’ll disable the plugin. Then you can rename again to original user-meta and enable the plugin to make your changes.
Thanks.
SupportMemberHello,
To use secure_cookie please add following line to your functions.php (under your active theme directory)
add_filter('secure_signon_cookie', create_function( '$secure_cookie, $credentials', 'return true;' ), 10, 2);
And replace %admin_url% with https://yourdomain/wp-admin/
under UserMeta >> Settings >> Login Tab >> Logged in user profile settingsThanks.
SupportMemberHello,
Did you follow: http://user-meta.com/user-meta-pro-getting-started/
If you thing something is wrong, would you please share your screenshoot?
Thanks.
-
AuthorPosts