Forum Replies Created
-
AuthorPosts
-
September 3, 2014 at 9:47 pm in reply to: Admin on Backend Profile can't leave required fields blank. Why? #6266KhaledMember
You will need to customize these code as you needed. Change Target_Field_ID and ‘my-common-class ‘
Thanks.
KhaledMemberHi,
You can update to version 1.1.6 manually. http://user-meta.com/documentation/get-started/
To see other’s profile as admin, Go to User Meta >> Settings (General Tab), select user profile into Profile Page Selection and check the checkbox. And then if you go to Users menu, there will be a new link named profile with every username (while mouse over username).
Thanks.
September 2, 2014 at 5:55 pm in reply to: Can we calculate someone's age based on Date of Birth field? #6257KhaledMemberYou will need to write some php or javascript code for that. What is your date of birth format?
September 2, 2014 at 5:50 pm in reply to: Can we auto scroll the form to top when moving through multi-part form? #6256KhaledMemberHello, Please put this to our feature request section. We will review this for new release.
Thanks.
September 2, 2014 at 5:45 pm in reply to: Admin on Backend Profile can't leave required fields blank. Why? #6255KhaledMemberHi, Please email a temp admin account to support(at)user-meta.com with this topic url.
Thanks.
KhaledMemberHello,
“Logged in user profile settings” doesn’t allows any php code, you can use placeholder instead.
href="http://www.example.org/forums/user/%user_login%/"
Thanks.
KhaledMemberHi,
This is an issue related with your server configuration. Your host doesn’t allows some pattern or number of posted data. If you click to “Save Change” button under Email Notification menu it fallen into 403 Forbidden error. Please contact with your host.Thanks.
KhaledMemberHello,
If the user check remember me checkbox while login, then the browser will remember the user until logout. In other hand, if the user doesn’t check the checkbox, user session will expire with closing the browser. If you want remember me checkbox to be preselected, put 1 to default value.Thanks.
KhaledMemberHi Veronica,
You can simply add these code to your functions.php (under currently activated theme directory) and don’t forget to remove your earlier code from post #6185
In fact these code #6218 are updated version of code #6185 to support s2member fields.
Optionally, you can comments line
add_action( 'user_meta_after_user_update', array( $this, 'profileUpdateEmail' ) );
from umEmailNotificationController.php
Thanks.
KhaledMemberWell, Replace existing codes with this one:
add_action( 'profile_update', 'profileUpdateNotification' ); function profileUpdateNotification( $user_id ) { global $userMeta; $user = new WP_User( $user_id ); $s2member = $user->wp_s2member_custom_fields; if ( is_array( $s2member ) ) { foreach( $s2member as $key => $val ){ $key = 's2member_' . $key; $user->$key = $val; } } $userMeta->prepareEmail( 'profile_update', $user ); }
And use following placeholder:
%s2member_street_address%
%s2member_city%
%s2member_state%
%s2member_zip_code%
%s2member_phone_number%Thanks.
KhaledMemberHi Steve,
Thanks for pointing out the issue. There are rooms in pagination form for optimization. We are thinking to redesign fields and forms editor to allows more options, easy to use and optimized way of viewing of generated form along with the on page validation issue. But it could take a little while to finish all of them.
KhaledMemberMaking the topic as resolved 😀
KhaledMemberHi Antoine,
Please add following code to your functions.phpadd_filter( 'user_meta_field_config', 'fieldCssClass', 10, 3 ); function fieldCssClass( $field, $fieldID, $formName ){ if ( $fieldID == 'Target_Field_ID') { $field['field_class'] = 'my-common-class '; } return $field; }
Thanks.
KhaledMemberHello,
UMP uses WP hooks to modify email sender/format. Although, I didn’t try FSC with UMP, If you visit User Meta >> Settings and set blank to all field under “E-mail Sender Setting”, then there will be no effect for default WP email system by UMP.
-
AuthorPosts