File: /home/nhqyemt2u0zd/www/wp-content/themes/kitgreen1.1.0/woocommerce/content-product-image.php
<?php
/**
* Product double image.
*
* @since 1.0
* @package kitgreen
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
global $product, $jwssc;
// Flip thumbnail
$flip_thumb = $jwssc ? $jwssc['flip'] : cs_get_option( 'wc-flip-thumb' );
// Sale badge
echo woocommerce_show_product_loop_sale_flash();
// Get attachment id
if ( version_compare( WC_VERSION, '3.0.0', '<' ) ) {
$attachment_ids = $product->get_gallery_attachment_ids();
} else {
$attachment_ids = $product->get_gallery_image_ids();
}
echo '<div class="product-image-flip">';
// Get first image
if ( has_post_thumbnail() ) {
$image_title = esc_attr( get_the_title( get_post_thumbnail_id() ) );
$image = get_the_post_thumbnail( $post->ID, apply_filters( 'single_product_large_thumbnail_size', 'shop_catalog' ), array(
'title' => $image_title,
'alt' => $image_title
) );
$link = get_the_permalink();
echo apply_filters( 'woocommerce_single_product_image_html', sprintf( '<a href="%s">%s</a>', $link, $image ), $post->ID );
} else {
echo apply_filters( 'woocommerce_single_product_image_html', sprintf( '<img src="%s" alt="%s" />', wc_placeholder_img_src(), esc_html__( 'Placeholder', 'kitgreen' ) ), $post->ID );
}
// Get a secondary image
if ( isset( $attachment_ids[0] ) ) {
$attachment_id = $attachment_ids[0];
$title = get_the_title();
$link = get_the_permalink();
$image = wp_get_attachment_image( $attachment_id, 'shop_catalog' );
echo apply_filters( 'woocommerce_single_product_image_thumbnail_html', sprintf( '<a href="%s" class="gallery" title="%s">%s</a>', $link, $title, $image ), $attachment_id, $post->ID );
}
echo '</div>';
if ( ! $flip_thumb ) {
remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail' );
}