Forum Replies Created
-
AuthorPosts
-
martinrMember
Henryk, but I need it for 1.1.6 😉
The best would be a function.
it is really important!
martinrMemberYes, main security question!!
martinrMemberThere was a problem with the htaccess. Mmmh, no more support here?
martinrMemberHello,
I tried the whole day and get no success 🙁
function exif($file) {
//This line reads the EXIF data and passes it into an array
$exif = read_exif_data($filepath);//We’re only interested in the orientation
$exif_orient = isset($exif[‘Orientation’])?$exif[‘Orientation’]:0;
$rotateImage = 0;//We convert the exif rotation to degrees for further use
if (6 == $exif_orient) {
$rotateImage = 90;
$imageOrientation = 1;
} elseif (3 == $exif_orient) {
$rotateImage = 180;
$imageOrientation = 1;
} elseif (8 == $exif_orient) {
$rotateImage = 270;
$imageOrientation = 1;
}
}Can you help me please, i think I have only to put the code (in a way) above in the functions.php…
Thanks
martinrMemberAfter much testing, I have come to the conclusion that the beta version for me is not usable in the least. Unfortunately, because I would like to use the Range Fields.
Other errors:
Some shared fields do not change the settings when you change settings at the field the form, for example HTML.
THe whole classes are a mess, sorry;-) (which is also in the current version something is so). It would be better if User Meta Pro would make no formatting and no classes, IDs etc. applies. Or you could exhibit it. That would be cleaner code I think.
Thank you for your interest. I’ll now return the old version.
Martin
martinrMemberNext problem:
HTML Fields adds “/” to tag:
Example:
<div id=\”um_field_114_test\”></div>
martinrMemberNext question: When I use a range field. Where can I put in for example “onchange=”range.value=value”?
This is an important thing 🙁Best regards
martinrMemberUploading Photos:
Warning: getimagesize(http://www.XXX.de/wp-content/uploads/files/Bildschirmfoto.png) [
function.getimagesize
]: failed to open stream: HTTP request failed! HTTP/1.1 401 Authorization Required in /www/htdocs/XXX/XXX/wp-content/plugins/user-meta/framework/models/PluginFrameworkWPSupport.php on line 562martinrMemberI tested it with [user-meta-login] and it is working.
Is there a problem with [user-meta-login form="Kundenlogin"] ??
It would be nice if you could give me an answer.Thanks and best regards
martinrMemberHey Khaled,
is there already a release date?
Thank you very much.
Martin
martinrMemberperfect 🙂 Thank you very much
- This reply was modified 10 years, 2 months ago by martinr.
martinrMemberIs there a solution to set a minimal length?
Best regards
martinrMemberUnfortunately it is noch working correct.
I tried this:
add_filter( ‘user_meta_field_config’, ‘user_meta_field_config_function’, 10, 3 );
function user_meta_field_config_function( $field, $fieldID, $formName ){
if( $fieldID != 7 ) // Replace 0 with your filed id
return $field;
$field[‘field_options’] = array( “showOn”=>”button”, “minDate”=>”new Date(‘2014, 09 – 1, 12’)”, “maxDate”=>”new Date(‘2014, 09 – 1, 15’)” );
return $field;
}But the Datepicker shows me a wrong date: Year: 2020, Month: April and from Day 7 to 10. What could be the problem?
Best regards
martinrMemberSorry, I have one more question: Is it possible to change the VALUE of the form. I dont want to have the time in the value “2014-09-12 17:22:58”.
Is it possible to remove the time from the value? Is it even possible to change the date to the german DD.MM.YY?I found this, but it is not working: http://user-meta.com/forums/topic/date-time-field-order/
Thank you very much.
Martin
-
AuthorPosts