Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Matt (Thomas) Miklic

    (@iammattthomas)

    Hi Rhyndman,

    It looks some of the photos in that gallery have no EXIF data, which explains why you’re not seeing it in the Carousel. I downloaded two images from your gallery to compare them; you can see here that some have full EXIF data and others are much more limited: https://cl.ly/image/010j0s2l3F25

    We are planning to expand the data shown in future versions of the Carousel. What data would be most useful for you?

    Thread Starter rhyndman

    (@rhyndman)

    Wow. Ever weird. Right you are. OK, fixed it now. I think it would be awesome if the fields were customizable, but for me the key ones are fstop, speed, ISO and focal length. That would be great ??

    Thanks for the help

    I would like to see the ISO data too (on top of what is already displayed – aperture, camera, focal length & shutter speed).

    I wanted to display ISO data too and I figured out how, it just takes two small code edits.

    In jetpack-carousel.php, line 121 is:
    'focal_length' => __( 'Focal Length', 'jetpack' ),
    add a line after it with:
    'iso' => __( 'ISO', 'jetpack' ),

    In jetpack-carousel.js, line 931-933 is:
    case 'aperture': val = 'f/' + val; break;
    add a line after it with:
    case 'iso': val = val; break;

    I would like to hide de comment box. Is possible?
    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: Jetpack by WordPress.com] Carousel – EXIF info only appearing for some pics’ is closed to new replies.