Forum Replies Created
-
AuthorPosts
-
SupportMember
Method WP_User::exists() is available from WordPress-3.4.0. Please update your WP version to latest one 3.5.1
Thanks.SupportMemberHello, Please change
user-meta/controllers/umVersionUpdateController.php on line 197 to:$fieldData = $userMeta->getFields( ‘key’, $fieldName );
Thanks.
SupportMemberYes. Registration redirect happens when user registration is complete.
SupportMemberHello, Which error message is showing when you tried to validate your license?
SupportMemberHello,
You can use alternate approach, Import users by UMP importer with their password. UMP will rehash the password. But you can add some bit of code to update raw password directly to wp_users table.
If you are using 1.1.3rc2, open user-meta/controllers/pro/umExportImportController.php
and add following codes between line 273 and 274
global $wpdb;
$wpdb->update( $wpdb->users, array('user_pass'=>$response->user_pass), array('ID'=>$response->ID) );
Thanks.
SupportMemberHello,
If ajax upload doesn’t working you can use non-ajax solution too.
For using non-ajax, indicate non-ajax in fields editor(for file upload) and you indicate non-ajax in your from too from “Forms Editor”
BTW, Which version of UMP you are using?March 8, 2013 at 4:42 pm in reply to: Filter Hook to modify field content (options in a select menu) #3324SupportMemberYou can add following codes after the end of foreach cluse.
$output = ',' . trim( $output, ',' );
Thanks.
SupportMemberHello,
Action hook: “user_meta_user_activate” only trigger when user is activated. You can write codes for action hook in functions.php file (under active theme directory)Here is a quick example.
add_action( 'user_meta_user_activate', 'postToMailchimp' );
function postToMailchimp( $userID ){
$user = new WP_User( $userID ); // This is a user object, you can get user data from this object.
// Write your code for mailchimp here.
}
Thanks.
SupportMemberHello,
Number of accepted argument (4th argument) value might be missing while you called add_filter
Here is a quick example:
add_filter( 'user_meta_form_display', 'user_meta_form_displayFunction', 10, 3 );
function user_meta_form_displayFunction( $html, $fromName, $formData ){
//Your code here
return $html;
}
SupportMemberHello, You can use “user_meta_default_login_form” filter action.
add_filter( 'user_meta_default_login_form', 'userMetaLoginFormConfig' );
function userMetaLoginFormConfig( $config ){
$config['after_form'] = 'Your HTML here';return $config;
}
Thanks.
SupportMemberHello,
Please add following codes to your functions.php (under active theme directory):
function loadUserMetaScripts() {
global $userMeta;$userMeta->enqueueScripts( array(
‘plugin-framework’,
‘user-meta’,
‘jquery-ui-all’,
‘fileuploader’,
‘wysiwyg’,
‘jquery-ui-datepicker’,
‘jquery-ui-slider’,
‘timepicker’,
‘validationEngine’,
‘password_strength’,
) );
$userMeta->runLocalization();
}add_action(‘wp_enqueue_scripts’, ‘loadUserMetaScripts’);
Thanks.
SupportMemberHello,
Please update your UMP version to 1.1.3rc3
Thanks.SupportMemberYep. functions.php under your current them’s directory.
SupportMemberHello,
With version 1.1.3rc3, if you add placeholder in your email notification area and the field was multiple checkbox, then field value will send as comma separated value.And for retrieving any extra field you can use get_user_meta function.
http://codex.wordpress.org/Function_Reference/get_user_metaIf checkbox have value, it will return array and for empty checkbox this will return null.
Thanks.
-
AuthorPosts