Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author TylerDigital

    (@tylerdigital)

    Hi archerdata, we’ve been having users uploading very large images into the detail image slot (several megabytes in size) so we changed the default to use WordPress’s medium image size.

    Please copy/paste this code into your theme’s functions.php and you’ll get the full size back:

    add_filter( 'da_detail_image_size', 'my_da_detail_image_size', 10, 4 );
    function my_da_detail_image_size( $size, $hotspot, $img_post, $settings ) {
    	return 'full';
    }

    We know you’ve been with us since 1.0 and have had a couple changes affecting your site, thanks for continuing to follow up as we work out improvements on our initial 1.0 release 🙂

    Thread Starter archerdata

    (@archerdata)

    Perfect! It affects the positioning by a couple of pixels, but that’s an easy fix. Thanks!

    Plugin Author croixhaug

    (@croixhaug)

    I’m going to mark this item resolved, but please reopen it if you’re still having trouble 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Update caused all zoom images to be resized’ is closed to new replies.