' ) ) { $attachment_ids = $product->get_gallery_image_ids(); if(isset($ascend['product_gallery_slider']) && 1 == $ascend['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 ) { if(isset($ascend['product_simg_resize']) && 0 == $ascend['product_simg_resize'] || false == $galslider) { $presizeimage = 0; } else { $presizeimage = 1; if(isset($ascend['shop_img_ratio'])) { $img_ratio = $ascend['shop_img_ratio']; } else { $img_ratio = 'square'; } if(ascend_display_sidebar()) { $productimgwidth = 360; } else { $productimgwidth = 460; } $image_crop = true; if($img_ratio == 'portrait') { $tempproductimgheight = $productimgwidth * 1.35; $productimgheight = floor($tempproductimgheight); } else if($img_ratio == 'landscape') { $tempproductimgheight = $productimgwidth / 1.35; $productimgheight = floor($tempproductimgheight); } else if($img_ratio == 'widelandscape') { $tempproductimgheight = $productimgwidth / 2; $productimgheight = floor($tempproductimgheight); } else if($img_ratio == 'softcrop') { $productimgheight = null; $image_crop = false; } else { $productimgheight = $productimgwidth; } $productimgwidth = apply_filters('ascend_product_single_image_width', $productimgwidth); $productimgheight = apply_filters('ascend_product_single_image_height', $productimgheight); } 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 ); } }