Forum Replies Created
-
AuthorPosts
-
KhaledMember
Hello,
Sorry, but didn’t get any email from your system.
Could you please send it again.
Thanks.
KhaledMemberHi Martin,
As UMP uses jQuery datepicker for showing date, you can use all sets of datepicker plugin configuration (http://api.jqueryui.com/datepicker/)
Please visit the following link:
https://gist.github.com/UserMetaPro/388b869c8caf6ebec685add those code to your functions.php
You can change yearRange to maxDate with proper value
http://api.jqueryui.com/datepicker/#option-maxDateHope it helps.
Thanks.
KhaledMemberHi,
Please install http://wordpress.org/plugins/user-meta-advanced/ plugin.
Then, go to User Meta >> Advanced, there is an option to enable/disable WP hook, and you can enable registration_redirect hook from there.
In fact, we added control over related WP hook to avoid plugin conflict. And design user-meta-advanced plugin to allow integration with other plugin.
THanks.
KhaledMemberHello David,
The error means, your server doesn’t have proper permission to access http://sfdev.geniedemo1.co.uk/wp-content/uploads/files/f31408123240.jpg. It could be a file permission issue or apache auth configuration issue. Please recheck them.
Thanks.
KhaledMemberHello,
By default, profile update email works only with profile created by UserMeta plugin. However, it is possible to integrate this feature to profile created by other plugin.
To do so, please add following code to functions.php:
add_action( 'profile_update', 'profileUpdateNotification' ); function profileUpdateNotification( $user_id ) { global $userMeta; $user = new WP_User( $user_id ); $userMeta->prepareEmail( 'profile_update', $user ); }
Hope it helps, Thanks.
KhaledMemberHello Steve,
Please add following code to your functions.php (under your current theme)
add_filter( 'user_meta_field_config', 'user_meta_field_config_function', 10, 3 ); function user_meta_field_config_function( $field, $fieldID, $formName ){ if( $fieldID != 0 ) // Replace 0 with your filed id return $field; $field['field_options'] = array( "yearRange"=>"1900:c" ); return $field; }
Don’t forget to Replace 0 with your filed id. Thanks.
KhaledMemberHi, there could be some js error on your site, please try non-ajax form. If it is possible, you can send url to support(at)user-meta.com
Thanks.
KhaledMemberHi, This is not an issue for User Meta, You will need to change your blog charset to utf8
Thanks.
KhaledMemberHi,
You can assign css class by Field Editor menu. To apply css directly to field, follow: https://gist.github.com/UserMetaPro/5356cd5e17492fd9a78f
To write extra js/css, you can use
user_meta_after_form
action hook. This hook allows two parameters, form_key and user_id.
Thanks.
KhaledMemberHi,
As this is not a known issue, we need to figure it out. Is it possible to set a temp admin account to your site for support(at)user-meta.com and contact to our contact us section with this topic url.
Thanks.
KhaledMemberHello,
Please add following code to your functions.php
add_filter( 'user_meta_pre_user_import', 'unserializeArray' ); function unserializeArray( $userdata ){ if ( ! empty( $userdata['_expire_user_settings'] ) ) $userdata['_expire_user_settings'] = unserialize( $userdata['_expire_user_settings'] ); return $userdata; }
Thanks.
August 7, 2014 at 6:11 pm in reply to: Admin on Backend Profile can't leave required fields blank. Why? #6140KhaledMemberField name doesn’t need to be identical. Only drag newly created not-required fields to backend admin.
Thanks.August 6, 2014 at 8:07 pm in reply to: Admin on Backend Profile can't leave required fields blank. Why? #6135KhaledMemberHello,
You can create duplicate field with same meta_key, don’t mark those fields as required and drag them to backend profile.
Thanks.
August 6, 2014 at 7:55 pm in reply to: Private Non-edit Display of User Profile for only the User #6134KhaledMemberHi Steve,
For this, you can create two profile page. In one profile page (non-editable), use HTML field to show user’s date. You can use placeholder (e.g. %user_email%) to show user’s data.
On other profile page, you can use regular editable field.Thanks.
-
AuthorPosts