HEX
Server: Apache
System: Linux webd006.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: zwafgyp (177615)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/zwafgyp/coolswim/wp-content/themes/liftsupply/woocommerce/content-product-inner-list.php
<?php
global $product;
$image_attributes = wp_get_attachment_image_src( get_post_thumbnail_id($product->get_id() ), 'blog-thumbnails' );

?>
<div class="product-block" data-product-id="<?php echo esc_attr($product->get_id()); ?>">
	<div class="row">
		<div class="col-md-3 col-lg-3 col-sm-3">
		    <figure class="image">
		        <?php woocommerce_show_product_loop_sale_flash(); ?>
		        <a title="<?php the_title(); ?>" href="<?php echo (get_option( 'woocommerce_enable_lightbox' )=='yes' && is_product()) ? $image_attributes[0] : the_permalink(); ?>" class="product-image <?php echo (get_option( 'woocommerce_enable_lightbox' )=='yes' &&  is_product())?'zoom':'zoom-2' ;?>">
		            <?php
		                /**
		                * woocommerce_before_shop_loop_item_title hook
		                *
		                * @hooked woocommerce_show_product_loop_sale_flash - 10
		                * @hooked woocommerce_template_loop_product_thumbnail - 10
		                */
		                remove_action('woocommerce_before_shop_loop_item_title','woocommerce_show_product_loop_sale_flash', 10);
		                do_action( 'woocommerce_before_shop_loop_item_title' );
		            ?>
		        </a>
		    </figure>
		</div>
	    <div class="col-md-6 col-lg-6 col-sm-6">
		    <div class="caption-list">
		        <div class="meta">

		         <h3 class="name"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
		            <?php echo  the_excerpt();  ?>
		        </div>
		    </div>
		</div>
		<div class="col-lg-3 col-md-3 col-sm-3">
			<div class="product-assets">

				<?php
	                /**
	                * woocommerce_after_shop_loop_item_title hook
	                *
	                * @hooked woocommerce_template_loop_rating - 5
	                * @hooked woocommerce_template_loop_price - 10
	                */
	                do_action( 'woocommerce_after_shop_loop_item_title');

	            ?>
	            <div class="action-bottom clearfix">
		            <?php
		                if( class_exists( 'YITH_WCWL' ) ) {
		                    echo do_shortcode( '[yith_wcwl_add_to_wishlist]' );
		                }
		            ?>

		            <?php if( class_exists( 'YITH_Woocompare' ) ) { ?>
	                <?php
	                    $action_add = 'yith-woocompare-add-product';
	                    $url_args = array(
	                        'action' => $action_add,
	                        'id' => $product->get_id()
	                    );
	                ?>
	                <div class="yith-compare">
	                    <a title="<?php esc_html_e( 'Add to compare', 'liftsupply' ); ?>" href="<?php echo wp_nonce_url( add_query_arg( $url_args ), $action_add ); ?>" class="compare" data-product_id="<?php echo esc_attr($product->get_id()); ?>">
	                        <em class="fa fa-exchange"></em>
	                        <span><?php esc_html_e('Add to compare','liftsupply'); ?></span>
	                    </a>
	                </div>
	            <?php } ?>
		            <?php if(liftsupply_fnc_theme_options('is-quickview', true)){ ?>
		                <div class="quick-view hidden-xs">
		                    <a title="<?php esc_html_e( 'Quick view', 'liftsupply' ); ?>" href="#" class="quickview" data-productslug="<?php echo trim($product->get_slug()); ?>" data-toggle="modal" data-target="#opal-quickview-modal">
		                       <i class="fa fa-eye"> </i>
				       <span><?php esc_html_e( 'Quick view', 'liftsupply' ); ?></span>
		                    </a>
		                </div>
		            <?php } ?>
		        </div>
		        <div class="button-groups add-button">
	                <?php do_action( 'woocommerce_after_shop_loop_item' ); ?>
	                <?php
	                    $action_add = 'yith-woocompare-add-product';
	                    $url_args = array(
	                        'action' => $action_add,
	                        'id' => $product->get_id()
	                    );
	                ?>
	            </div>
			</div>
		</div>
	</div>
</div>