File: /home/parhudrw/anqa.it/wp-content/themes/essentials/woocommerce/pixfort/product-full-img.php
<?php
/**
* The template for displaying product content within loops
*
* This template can be overridden by copying it to yourtheme/woocommerce/content-product.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
* @see https://docs.woocommerce.com/document/template-structure/
* @package WooCommerce/Templates
* @version 3.4.0
*/
defined( 'ABSPATH' ) || exit;
global $product;
// Ensure visibility.
if ( empty( $product ) || ! $product->is_visible() ) {
return;
}
$nonce = wp_create_nonce("product_nonce");
$extra_classes = 'shadow-sm fly shadow-hover-sm rounded-lg';
if(!empty($GLOBALS['item_extra_classes'])){
$extra_classes = $GLOBALS['item_extra_classes'];
}
?>
<li <?php wc_product_class('', $product); ?>>
<div class="card pix-product-full-img pix-product-item bg-333 pix-hover-item <?php echo esc_attr( $extra_classes ); ?> pix-p-20 overflow-hidden position-relative" >
<?php
/**
* Hook: woocommerce_before_shop_loop_item.
*
* @hooked woocommerce_template_loop_product_link_open - 10
*/
remove_action('woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10);
do_action( 'woocommerce_before_shop_loop_item' );
/**
* Hook: woocommerce_before_shop_loop_item_title.
*
* @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);
?>
<div class="card-img pix-bg-image pix-opacity-5 h-100 pix-hover-opacity-7 pix-img-scale2 pix-product-img-hover d-block w-100 pix-full-img-product">
<?php do_action( 'woocommerce_before_shop_loop_item_title' ); ?>
</div>
<?php
$price_area = '';
if(wc_review_ratings_enabled()&&$product->get_rating_count()>0){
$price_area = 'pix-product-price-rating';
}
?>
<div class="h-100 w-100 pix-product-full-img pix-img-overlay d-flex align-content-between flex-wrap" style="min-height:320px;">
<div class="d-flex align-items-start w-100">
<div class="w-100">
<div class="d-flex align-items-center">
<div class="flex-fill <?php echo esc_attr( $price_area );?>">
<div class="pix-product-price">
<?php woocommerce_template_loop_price(); ?>
</div>
<div class="pix-product-rating pt-2">
<?php woocommerce_template_loop_rating(); ?>
</div>
</div>
<?php do_action( 'pix_product_preview_btn', 'full', $post, $nonce ); ?>
<?php
if( class_exists( 'YITH_WCWL' ) ){
?>
<div class="pix-pl-10 align-self-stretch d-flex">
<?php
$like_link = admin_url('admin-ajax.php');
$status = '';
$like_classes = 'text-body-default2 text-light-opacity-7';
global $yith_wcwl;
if(empty($yith_wcwl->details['user_id'])){
$yith_wcwl->details['user_id'] = '';
}
if($yith_wcwl->is_product_in_wishlist($post->ID)){
$status = 'remove-item';
$like_classes = 'text-red';
}
?>
<a href="#" data-wishlist-link="<?php echo esc_url($like_link); ?>" data-id="<?php echo esc_attr( $post->ID); ?>" class="pix-add-to-wishlist <?php echo esc_attr( $status); ?>"><span class="btn-icon <?php echo esc_attr( $like_classes); ?> text-18 pixicon-heart align-self-center"></span></a>
</div>
<?php
}
do_action( 'pix_product_add_to_cart_sm_btn', $post, $product, $nonce, 'text-light-opacity-7' );
?>
</div>
</div>
</div>
<div class="d-flex align-items-end w-100">
<div class="w-100">
<div class="pix-mb-5">
<?php woocommerce_show_product_loop_sale_flash(); ?>
</div>
<div>
<a href="<?php echo get_the_permalink() ?>" class="font-weight-bold text-white">
<?php echo do_shortcode( get_the_title() ); ?>
</a>
</div>
<?php
action_pixfort_product_cats('dark-opacity-5', 'light-opacity-6');
/**
* Hook: woocommerce_after_shop_loop_item_title.
*
* @hooked woocommerce_template_loop_rating - 5
* @hooked woocommerce_template_loop_price - 10
*/
remove_action('woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5);
remove_action('woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10);
do_action( 'woocommerce_after_shop_loop_item_title' );
/**
* Hook: woocommerce_after_shop_loop_item.
*
* @hooked woocommerce_template_loop_product_link_close - 5
* @hooked woocommerce_template_loop_add_to_cart - 10
*/
// remove_action('woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10);
remove_action('woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 10);
$disableDefaultAdd = true;
if(pix_get_option('shop-default-add-cart')){
$disableDefaultAdd = false;
}
if($disableDefaultAdd){
remove_action('woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10);
do_action( 'woocommerce_after_shop_loop_item' );
}else{
do_action( 'woocommerce_after_shop_loop_item' );
}
?>
</div>
</div>
</div>
</div>
</li>