Viewing 1 replies (of 1 total)
  • I’m guessing you’re talking about the detail image, which is inside the description area after clicking your hotspot?

    Currently that image is resized, but you could force the full-size image by adding the following to your functions.php file:

    ​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';
    }

    The main Draw Attention image should not be resized. If you think it is, please send a link to the page it’s on and we’ll take a look.

Viewing 1 replies (of 1 total)

The topic ‘Image size’ is closed to new replies.