Forum Replies Created
-
AuthorPosts
-
KhaledMember
Hello elurie,
It is possible to use that meta field for activation and deactivation. Just assign “inactive” as value for key “user_meta_user_status” to those users who have already expire but don’t want to remove them from users table.Thanks.
KhaledMemberYou indicate version 1.1.1-free. I am not sure, free version have Rich Text capability or not. We solve rich text bug by version 1.1.2rc3
Thanks.
KhaledMemberHello Andi,
Some words are missing translation process. We will check and update them before releasing version 1.1.2 (next version). If we modify source for version 1.1.2rc3, there will some inconsistency with the current version.I can help you by locating current version’s source until releasing next pot file.
1. All registration process can be found umAjaxModel::ajaxInsertUser() method in /models/pro/umAjaxModel.php and umSupportProModel::registerUser() method in /models/pro/umSupportProModel.php
2. In /views/generateForm.php Line: 117 and 119
3. In /views/pro/generateFields.php Line:112
$field2[‘fieldTitle’] = “Retype ” . $fieldTitle;
will be:
$field2[‘fieldTitle’] = sprintf( __( ‘Retype %s’, $userMeta->name ), $fieldTitle );4. In assets/js/jquery/jquery.password_strength.js
5. In framework/helper/uploader.php
Thanks.
KhaledMemberHello,
Please post your url here to let me check.Thanks.
KhaledMemberHello andi,
1. You can hack et_avatar at /views/pro/generateField.php Line 208
http://codex.wordpress.org/Function_Reference/get_avatar
Thanks for your suggestion. we’ll try to implement it with future version.
2. We do not provide direct method to use upload functionality outside of plugin.
3. It is not fully tested. Still you can use drag & drop file upload.
Thanks.
KhaledMemberHello,
You can also follow this way:
remove_all_actions('user_meta_user_activate');add_action( 'user_meta_user_activate', 'user_meta_new_password' );
function user_meta_new_password($userID){
$user = new WP_User( $userID );
$newPass = wp_generate_password(12, false);
$user->password = $newPass;wp_update_user( array('ID' => $userID, 'user_pass' => $newPass ) );
update_user_option( $userID, 'default_password_nag', true, true );umEmailNotificationController::_sendEmail( 'activation', $user );
}
If you follow this way, you need to change two line for umEmailNotificationController. Line 100 and 107
From:
$userMeta->sendEmail( this->_prepareEmail( $mailData, $user ) );
To:
$userMeta->sendEmail( self::_prepareEmail( $mailData, $user ) );
Don’t worry for plugin upgrade. We’ll update those two line of code with next version 😉
Thanks.
KhaledMemberYes. It is possible. you can use “user_meta_user_activate” action hook. This hook accept $user_id parameter.
Thanks.
KhaledMemberHello,
Sending password is only supported with registration email. Either WordPress or User Meta does not save plain text user password after completing registration. So we can only able to retrieve plain text password while registration.Thanks
KhaledMemberHello,
If everything is ok, “Form not found” message not suppose to shown. However, would you please contact with our “Contact Us” section with your site access, so that they can check the issue on your site.Thanks.
KhaledMemberHello, user_meta_user_status meta_key holds user’s activation status. They are not needed to show in profile, this field just hold the data to check the user activated or not.
Thanks.KhaledMemberHello,
We have change redirection system from version rc2 to rc3. Please configure your redirection from User Meta >> Settings (Redirection Tab).Thanks.
KhaledMemberHello, you do not need to rebuild the form.
Just check the form name that you entered is similar with your shortcode. (case sensitive)Thanks.
KhaledMemberHello,
“Security Check” text suppose to show, when you already logged-in with one tab and try to log-in with another tab with same browser. Would you please check the issue again and let us know (I have check your site, Login widget is currently disable in your site).
Thanks.
KhaledMemberHello
we have sent you pre-activated version to your email.
Thanks -
AuthorPosts