' ) ) { $attachment_ids = $product->get_gallery_image_ids(); if(isset($pinnacle['product_gallery_slider']) && 1 == $pinnacle['product_gallery_slider']) { $galslider = true; $output_size = 'shop_single'; } else { $galslider = false; $output_size = 'shop_thumbnail'; } } else { $attachment_ids = $product->get_gallery_attachment_ids(); $galslider = false; $output_size = 'shop_thumbnail'; } if ( $attachment_ids && $product->get_image_id() ) { if(isset($pinnacle['product_simg_resize']) && 0 == $pinnacle['product_simg_resize'] || false == $galslider) { $presizeimage = 0; } else { $presizeimage = 1; $productimgwidth = 458; $productimgheight = 458; } foreach ( $attachment_ids as $attachment_id ) { $full_size_image = wp_get_attachment_image_src( $attachment_id, 'full' ); $thumbnail = wp_get_attachment_image_src( $attachment_id, 'shop_thumbnail' ); $image_title = get_post_field( 'post_excerpt', $attachment_id); if(!empty($image_title)) { $light_title = $image_title; } else { $light_title = get_the_title($attachment_id ); } $attributes = array( 'title' => $image_title, 'data-caption' => get_post_field( 'post_excerpt', $attachment_id ), 'data-src' => $full_size_image[0], 'data-large_image' => $full_size_image[0], 'data-large_image_width' => $full_size_image[1], 'data-large_image_height' => $full_size_image[2], ); if($presizeimage == 1){ $html = ''; } else { $html = ''; } echo apply_filters( 'woocommerce_single_product_image_thumbnail_html', $html, $attachment_id ); } }