Forum Replies Created
-
AuthorPosts
-
admin
KeymasterHello Dennis,
The issue has been solved in the current dev version. Thanks for your reporting.
Best Regards
Khaledadmin
KeymasterIf you are using these code, please use following code instead
add_filter( 'user_meta_field_config', 'user_meta_field_config_add_asterisk', 10, 3 ); function user_meta_field_config_add_asterisk( $field, $fieldID, $formName ){ if ( ! empty( $field['required'] ) || in_array($field['field_type'], array('user_login', 'user_email') ) ) { if ( in_array($field['field_type'], array('user_avatar', 'file') ) ) return $field; if ( !empty( $field['field_title'] ) ) $field['field_title'] .= '*'; } return $field; }
Thanks.
admin
Keymasteradmin
KeymasterHi, is it possible to set a temporary admin account in your site to check the issue. You can send it to support(at)user-meta.com with this topc url.
Thanks.admin
KeymasterHello,
Please add following code to your functions.php (under active theme directory)
add_filter( 'user_meta_field_config', 'user_meta_field_config_function', 10, 3 ); function user_meta_field_config_function( $field, $fieldID, $formName ){ if( $fieldID != 'Your field id here' ) return $field; $field['options'] = "teacher=Yes, I’m a teacher, student=Yes, I’m a student"; return $field; }
Note: Use ascii code of comma where you want to appear it. http://www.asciitable.com/
Thanks.admin
KeymasterThank you for your reporting. We will take care of it.
-
This reply was modified 13 years, 3 months ago by
admin.
admin
Keymaster$data = str_replace( ‘%INSTRUMENT%’, @$user->instrument, $data );
Add this line, before line number 131 (before return $data)
Thanks.
admin
KeymasterThank you for purchasing Pro version. Due to maintenance, you faced as per your above problem. It’s already been solved.
Now you can able to download the latest version of User Meta Pro.
In case, you will face anymore problem, feel free to contact with us.
We are always glad to help you.Thank you for your inquiry.
admin
KeymasterThank you for purchasing User Meta Pro. we have sent you an invoice.
Please let us know, if you have any other issue.
admin
KeymasterThank you for using User Meta Pro.
Currently we do not deal with multilingual functionality. Multilingual functionality is in our Upcoming Feature List. This may be available by future release.Thanks.
admin
KeymasterYes. you can modify as your needs.
You can check our Upcoming Feature List.
and also can request for new feature. Request Feature.
Thank You.
-
This reply was modified 13 years, 3 months ago by
-
AuthorPosts