Forum Replies Created
-
AuthorPosts
-
adminKeymaster
Hello Dennis,
The issue has been solved in the current dev version. Thanks for your reporting.
Best Regards
KhaledadminKeymasterIf 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.
adminKeymasteradminKeymasterHi, 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.adminKeymasterHello,
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.adminKeymasterThank you for your reporting. We will take care of it.
- This reply was modified 12 years, 8 months ago by admin.
adminKeymaster$data = str_replace( ‘%INSTRUMENT%’, @$user->instrument, $data );
Add this line, before line number 131 (before return $data)
Thanks.
adminKeymasterThank 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.
adminKeymasterThank you for purchasing User Meta Pro. we have sent you an invoice.
Please let us know, if you have any other issue.
adminKeymasterThank 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.
adminKeymasterYes. you can modify as your needs.
You can check our Upcoming Feature List.
and also can request for new feature. Request Feature.
Thank You.
-
AuthorPosts