• Hi
    Last couple of weeks we get a shorter exif data compare to what we used to get
    example:
    this gallery first image produced:
    https://gep.co.il/gallery/landscape/

    Aperture: ?/4 | Credit: Eran Ben-Baruch Gotesmaan | Camera: Canon EOS 5DS R | Taken: 21 January, 2016 | Copyright: GEPRO | Focal length: 24mm | ISO: 320 | Shutter speed: 1/125s |

    last image from couple of days a go:
    :Credit: Eran Ben-Baruch Gotesmaan | Taken: 19 December, 2016 | Copyright: GEPRO |

    and its about the same with all new images…
    any idea what could get wrong?

    many thanks

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author kristarella

    (@kristarella)

    Hey there,

    That’s weird. How are you adding the exif on this page?

    Do you have any image optimization plugins on the site?

    Thread Starter pikaya

    (@pikaya)

    Hi

    We use it via a function:
    <?php
    if ( ! defined( ‘ABSPATH’ ) ) exit; // Exit if accessed directly
    function my_image_titles($atts,$img) {
    if (function_exists(‘exifography_display_exif’))
    $atts[‘title’] = trim(strip_tags( $img->post_title )) .’ ‘. exifography_display_exif(‘all’,$img->ID);
    else
    $atts[‘title’] = trim(strip_tags( $img->post_title ));
    return $atts;
    }
    add_filter(‘wp_get_attachment_image_attributes’,’my_image_titles’,10,2);

    and no image optimization plugin is added….

    Thanks

    I’m having this same problem, working on a local install. Had a look at the database and all exif fields are empty, except for ‘Credit’, ‘Copyright’ and ‘Taken’. The test image I used also has details like ISO, Camera, and shutter_speed, but it seems these are not extracted from the exif data and put into the database.

    Running latest WP 4.9.7 and PHP version 7.1.4

    Plugin Author kristarella

    (@kristarella)

    @pikaya and @frizzel,

    if you can share some of the images that are having problems (link on your site, or dropbox or something) I will try to look into it further.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘some data is missing’ is closed to new replies.