geno/wp-content/plugins/essential-addons-for-elementor-lite/includes/Template/Eicon-Woocommerce/default.php
2024-02-01 11:54:18 +00:00

623 lines
28 KiB
PHP

<?php
/**
* Template Name: Default
*/
use \Essential_Addons_Elementor\Classes\Helper;
use Essential_Addons_Elementor\Elements\Product_Grid;
use \Elementor\Group_Control_Image_Size;
if ( ! defined( 'ABSPATH' ) ) {
exit;
} // Exit if accessed directly
$product = wc_get_product( get_the_ID() );
if ( ! $product ) {
error_log( '$product not found in ' . __FILE__ );
return;
}
if ( has_post_thumbnail() ) {
$settings[ 'eael_image_size_customize' ] = [
'id' => get_post_thumbnail_id(),
];
$settings['eael_image_size_customize_size'] = $settings['eael_product_grid_image_size_size'];
$thumbnail_html = Group_Control_Image_Size::get_attachment_image_html( $settings,'eael_image_size_customize' );
}
$title_tag = isset( $settings['eael_product_grid_title_html_tag'] ) ? Helper::eael_validate_html_tag($settings['eael_product_grid_title_html_tag']) : 'h2';
$should_print_compare_btn = isset( $settings['show_compare'] ) && 'yes' === $settings['show_compare'];
if ( function_exists( 'YITH_WCWL' ) ) {
$should_print_wishlist_btn = isset( $settings['eael_product_grid_wishlist'] ) && 'yes' === $settings['eael_product_grid_wishlist'];
}
// Improvement
$grid_style_preset = isset($settings['eael_product_grid_style_preset']) ? $settings['eael_product_grid_style_preset'] : '';
$list_style_preset = isset($settings['eael_product_list_style_preset']) ? $settings['eael_product_list_style_preset'] : '';
$sale_badge_align = isset( $settings['eael_product_sale_badge_alignment'] ) ? esc_attr( $settings['eael_product_sale_badge_alignment'] ) : '';
$sale_badge_preset = isset( $settings['eael_product_sale_badge_preset'] ) ? esc_attr( $settings['eael_product_sale_badge_preset'] ) : '';
// should print vars
$should_print_rating = isset( $settings['eael_product_grid_rating'] ) && 'yes' === $settings['eael_product_grid_rating'];
$should_print_quick_view = isset( $settings['eael_product_grid_quick_view'] ) && 'yes' === $settings['eael_product_grid_quick_view'];
$should_print_image_clickable = isset( $settings['eael_product_grid_image_clickable'] ) && 'yes' === $settings['eael_product_grid_image_clickable'];
$should_print_price = isset( $settings['eael_product_grid_price'] ) && 'yes' === $settings['eael_product_grid_price'];
$should_print_excerpt = isset( $settings['eael_product_grid_excerpt'] ) && ('yes' === $settings['eael_product_grid_excerpt'] && has_excerpt());
$widget_id = isset($settings['eael_widget_id']) ? $settings['eael_widget_id'] : null;
$sale_badge_text = !empty($settings['eael_product_sale_text']) ? $settings['eael_product_sale_text'] : __( 'Sale!', 'essential-addons-for-elementor-lite' );
$stock_out_badge_text = !empty($settings['eael_product_stockout_text']) ?$settings['eael_product_stockout_text'] : __( 'Stock <br/> Out', 'essential-addons-for-elementor-lite' );
$is_show_badge = $settings['eael_show_product_sale_badge'];
$quick_view_setting = [
'widget_id' => $widget_id,
'product_id' => $product->get_id(),
'page_id' => $settings['eael_page_id'],
];
$product_wrapper_classes = implode( " ", apply_filters( 'eael_product_wrapper_class', [], $product->get_id(), 'eicon-woocommerce' ) );
if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-product-reveal' ) { ?>
<li class="product <?php echo esc_attr( $product_wrapper_classes ); ?>">
<?php
do_action( 'eael_woocommerce_before_shop_loop_item' );
if ( $settings['eael_wc_loop_hooks'] === 'yes' ) {
do_action( 'woocommerce_before_shop_loop_item' );
}
?>
<div class="eael-product-wrap">
<?php
if( $should_print_image_clickable ) {
echo '<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
}
echo wp_kses_post( $product->get_image( $settings['eael_product_grid_image_size_size'], [ 'loading' => 'eager', 'class'=> 'attachment-woocommerce_thumbnail size-woocommerce_thumbnail wvs-archive-product-image' ] ) );
if ( $should_print_image_clickable ) {
echo '</a>';
}
// printf('<%1$s class="woocommerce-loop-product__title"><a href="%3$s" class="woocommerce-LoopProduct-link woocommerce-loop-product__link woocommerce-loop-product__title_link woocommerce-loop-product__title_link_simple woocommerce-loop-product__title_link_reveal">%2$s</a></%1$s>', $title_tag, $product->get_title(), $product->get_permalink());
echo '<div class="eael-product-title">
<a href="' . esc_url( $product->get_permalink() ) . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
printf('<%1$s class="woocommerce-loop-product__title">%2$s</%1$s>', $title_tag, Helper::eael_wp_kses( $product->get_title() ));
echo '</a>
</div>';
if ( $should_print_rating ) {
echo wp_kses_post( wc_get_rating_html( $product->get_average_rating(), $product->get_rating_count() ) );
}
if ( $is_show_badge ){
if ( ! $product->is_in_stock() ) {
printf( '<span class="outofstock-badge ' . $sale_badge_preset . ' ' . $sale_badge_align . '">%s</span>', $stock_out_badge_text );
} elseif ( $product->is_on_sale() ) {
printf( '<span class="onsale ' . $sale_badge_preset . ' ' . $sale_badge_align . '">%s</span>', $sale_badge_text );
}
}
if ( $should_print_price ) {
echo '<div class="eael-product-price">'.$product->get_price_html().'</div>';
}
?>
<?php
woocommerce_template_loop_add_to_cart();
if ( $should_print_compare_btn ) {
Product_Grid::print_compare_button( $product->get_id() );
}
?>
<?php
if ( ! empty( $should_print_wishlist_btn ) ) {
echo '<div class="add-to-whishlist">';
echo do_shortcode('[yith_wcwl_add_to_wishlist]');
echo '</div>';
}
if ( $settings['eael_wc_loop_hooks'] === 'yes' ) {
do_action( 'woocommerce_after_shop_loop_item' );
}
do_action( 'eael_woocommerce_after_shop_loop_item' );
?>
</div>
</li>
<?php
} else if ( $grid_style_preset == 'eael-product-overlay' ) {
?>
<li <?php post_class( "product {$product_wrapper_classes}" ); ?>>
<?php
do_action( 'eael_woocommerce_before_shop_loop_item' );
if ( $settings['eael_wc_loop_hooks'] === 'yes' ) {
do_action( 'woocommerce_before_shop_loop_item' );
}
?>
<div class="overlay">
<?php
if( $should_print_image_clickable ) {
echo '<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
}
echo $product->get_image( $settings['eael_product_grid_image_size_size'], [ 'loading' => 'eager' ] );
if ( $should_print_image_clickable ) {
echo '</a>';
}
?>
<div class="button-wrap clearfix">
<a href="<?php echo esc_url( $product->get_permalink() ); ?>" class="product-link"><span class="fas fa-link"></span></a>
<?php
woocommerce_template_loop_add_to_cart();
if ( $should_print_compare_btn ) {
Product_Grid::print_compare_button( $product->get_id(), 'icon' );
}
?>
<?php
if ( ! empty( $should_print_wishlist_btn ) ) {
echo '<div class="add-to-whishlist">';
echo do_shortcode('[yith_wcwl_add_to_wishlist]');
echo '</div>';
}
?>
</div>
</div>
<?php
// printf('<%1$s class="woocommerce-loop-product__title"><a href="%3$s" class="woocommerce-LoopProduct-link woocommerce-loop-product__link woocommerce-loop-product__title_link woocommerce-loop-product__title_link_overlay">%2$s</a></%1$s>', $title_tag, $product->get_title(), $product->get_permalink());
echo '<div class="eael-product-title">
<a href="' . esc_url( $product->get_permalink() ) . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
printf('<%1$s class="woocommerce-loop-product__title">%2$s</%1$s>', $title_tag, Helper::eael_wp_kses( $product->get_title() ));
echo '</a>
</div>';
if ( $should_print_rating ) {
echo wc_get_rating_html( $product->get_average_rating(), $product->get_rating_count() );
}
if ( $is_show_badge ) {
if ( ! $product->is_in_stock() ) {
printf( '<span class="outofstock-badge ' . $sale_badge_preset . ' ' . $sale_badge_align . '">%s</span>', $stock_out_badge_text );
} elseif ( $product->is_on_sale() ) {
printf( '<span class="onsale ' . $sale_badge_preset . ' ' . $sale_badge_align . '">%s</span>', $sale_badge_text );
}
}
if ( $should_print_price ) {
echo '<div class="eael-product-price">'.$product->get_price_html().'</div>';
}
if ( $settings['eael_wc_loop_hooks'] === 'yes' ) {
do_action( 'woocommerce_after_shop_loop_item' );
}
do_action( 'eael_woocommerce_after_shop_loop_item' );
?>
</li>
<?php
} else if (($grid_style_preset == 'eael-product-preset-5') || ($grid_style_preset == 'eael-product-preset-6') || ($grid_style_preset == 'eael-product-preset-7')) {
if ( true === wc_get_loop_product_visibility( $product->get_id() ) || $product->is_visible() ) {
?>
<li <?php post_class( "product {$product_wrapper_classes}" ); ?>>
<?php
do_action( 'eael_woocommerce_before_shop_loop_item' );
if ( $settings['eael_wc_loop_hooks'] === 'yes' ) {
do_action( 'woocommerce_before_shop_loop_item' );
}
?>
<div class="eael-product-wrap">
<div class="product-image-wrap">
<div class="image-wrap">
<?php
if ( $is_show_badge ) {
echo( ! $product->is_in_stock() ? '<span class="eael-onsale outofstock ' . $sale_badge_preset . ' ' . $sale_badge_align . '">' . $stock_out_badge_text . '</span>' : ( $product->is_on_sale() ? '<span class="eael-onsale ' . $sale_badge_preset . ' ' . $sale_badge_align . '">' . $sale_badge_text . '</span>' : '' ) );
}
if( $should_print_image_clickable ) {
echo '<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
}
echo wp_kses_post( $product->get_image( $settings['eael_product_grid_image_size_size'], [ 'loading' => 'eager' ] ) );
if( $should_print_image_clickable ) {
echo '</a>';
}
?>
</div>
<div class="image-hover-wrap">
<?php if($grid_style_preset == 'eael-product-preset-5'){ ?>
<ul class="icons-wrap block-style">
<?php if( $should_print_quick_view ){?>
<li class="eael-product-quick-view">
<a id="eael_quick_view_<?php echo uniqid(); ?>" data-quickview-setting="<?php echo htmlspecialchars(json_encode($quick_view_setting),ENT_QUOTES); ?>"
class="eael-product-grid-open-popup open-popup-link">
<i class="fas fa-eye"></i>
</a>
</li>
<?php } ?>
<?php
if ( $should_print_compare_btn ) {
echo '<li class="add-to-compare">';
Product_Grid::print_compare_button( $product->get_id(), 'icon' );
echo '</li>';
}
?>
<?php
if ( ! empty( $should_print_wishlist_btn ) ) {
echo '<li class="add-to-whishlist">';
echo do_shortcode('[yith_wcwl_add_to_wishlist]');
echo '</li>';
}
?>
<li class="view-details"><?php echo '<a href="' . $product->get_permalink() . '"><i class="fas fa-link"></i></a>'; ?></li>
<li class="add-to-cart"><?php woocommerce_template_loop_add_to_cart(); ?></li>
</ul>
<?php } elseif ($grid_style_preset == 'eael-product-preset-7') { ?>
<ul class="icons-wrap block-box-style">
<li class="add-to-cart"><?php
woocommerce_template_loop_add_to_cart(); ?></li>
<?php
if ( $should_print_compare_btn ) {
echo '<li class="add-to-compare">';
Product_Grid::print_compare_button( $product->get_id(), 'icon' );
echo '</li>';
}
?>
<?php
if ( ! empty( $should_print_wishlist_btn ) ) {
echo '<li class="add-to-whishlist">';
echo do_shortcode('[yith_wcwl_add_to_wishlist]');
echo '</li>';
}
?>
<?php if( $should_print_quick_view ){?>
<li class="eael-product-quick-view">
<a id="eael_quick_view_<?php echo uniqid(); ?>" data-quickview-setting="<?php echo htmlspecialchars(json_encode($quick_view_setting),ENT_QUOTES); ?>"
class="eael-product-grid-open-popup open-popup-link">
<i class="fas fa-eye"></i>
</a>
</li>
<?php } ?>
<li class="view-details"><?php echo '<a href="' . $product->get_permalink
() . '"><i class="fas fa-link"></i></a>'; ?></li>
</ul>
<?php } else { ?>
<ul class="icons-wrap box-style">
<li class="add-to-cart"><?php
woocommerce_template_loop_add_to_cart();
?></li>
<?php
if ( $should_print_compare_btn ) {
echo '<li class="add-to-compare">';
Product_Grid::print_compare_button( $product->get_id(), 'icon' );
echo '</li>';
}
?>
<?php
if ( ! empty( $should_print_wishlist_btn ) ) {
echo '<li class="add-to-whishlist">';
echo do_shortcode('[yith_wcwl_add_to_wishlist]');
echo '</li>';
}
?>
<?php if( $should_print_quick_view ){?>
<li class="eael-product-quick-view">
<a id="eael_quick_view_<?php echo uniqid(); ?>" data-quickview-setting="<?php echo htmlspecialchars(json_encode($quick_view_setting),ENT_QUOTES); ?>"
class="eael-product-grid-open-popup open-popup-link">
<i class="fas fa-eye"></i>
</a>
</li>
<?php } ?>
<li class="view-details" title="Details"><?php echo '<a href="' . $product->get_permalink() . '"><i class="fas fa-link"></i></a>'; ?></li>
</ul>
<?php }
?>
</div>
</div>
<div class="product-details-wrap">
<?php
if(($grid_style_preset == 'eael-product-preset-7') && $should_print_price ){
echo '<div class="eael-product-price">'.$product->get_price_html().'</div>';
}
if ($should_print_rating) {
echo wc_get_rating_html
($product->get_average_rating(), $product->get_rating_count());
}
?>
<div class="eael-product-title">
<?php
echo '<a href="' . esc_url( $product->get_permalink() ) . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
printf('<%1$s>%2$s</%1$s>', $title_tag, Helper::eael_wp_kses( $product->get_title() ));
echo '</a>';
?>
<?php //printf('<%1$s><a href="%3$s" class="woocommerce-LoopProduct-link woocommerce-loop-product__link woocommerce-loop-product__title_link woocommerce-loop-product__title_link_simple woocommerce-loop-product__title_link_reveal">%2$s</a></%1$s>', $title_tag, $product->get_title(), $product->get_permalink()); ?>
</div>
<?php if(($grid_style_preset != 'eael-product-preset-7') && $should_print_price ){
echo '<div class="eael-product-price">'.$product->get_price_html().'</div>';
}?>
</div>
</div>
<?php
if ( $settings['eael_wc_loop_hooks'] === 'yes' ) {
do_action( 'woocommerce_after_shop_loop_item' );
}
do_action( 'eael_woocommerce_after_shop_loop_item' );
?>
</li>
<?php
}
} else if ($grid_style_preset == 'eael-product-preset-8') {
if ( true === wc_get_loop_product_visibility( $product->get_id() ) || $product->is_visible() ) {
?>
<li <?php post_class( "product {$product_wrapper_classes}" ); ?>>
<div class="eael-product-wrap">
<div class="product-image-wrap">
<div class="image-wrap">
<?php
if( $should_print_image_clickable ) {
echo '<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
}
if ( $is_show_badge ) {
echo( ! $product->is_in_stock() ? '<span class="eael-onsale outofstock ' . $sale_badge_preset . ' ' . $sale_badge_align . '">' . $stock_out_badge_text . '</span>' : ( $product->is_on_sale() ? '<span class="eael-onsale ' . $sale_badge_preset . ' ' . $sale_badge_align . '">' . $sale_badge_text . '</span>' : '' ) );
}
echo $product->get_image($settings['eael_product_grid_image_size_size'], ['loading' => 'eager']);
if( $should_print_image_clickable ) {
echo '</a>';
}
?>
</div>
<div class="image-hover-wrap">
<ul class="icons-wrap over-box-style">
<li class="add-to-cart"><?php
woocommerce_template_loop_add_to_cart(); ?>
</li>
<?php
if ( $should_print_compare_btn ) {
echo '<li class="add-to-compare">';
Product_Grid::print_compare_button( $product->get_id(), 'icon' );
echo '</li>';
}
?>
<?php
if ( ! empty( $should_print_wishlist_btn ) ) {
echo '<li class="add-to-whishlist">';
echo do_shortcode('[yith_wcwl_add_to_wishlist]');
echo '</li>';
}
?>
<?php if( $should_print_quick_view ){?>
<li class="eael-product-quick-view">
<a id="eael_quick_view_<?php echo uniqid(); ?>" data-quickview-setting="<?php echo htmlspecialchars(json_encode($quick_view_setting),ENT_QUOTES); ?>"
class="eael-product-grid-open-popup open-popup-link">
<i class="fas fa-eye"></i>
</a>
</li>
<?php } ?>
</ul>
</div>
</div>
<div class="product-details-wrap">
<?php
if ( $should_print_price ) {
echo '<div class="eael-product-price">'.$product->get_price_html().'</div>';
}
?>
<div class="eael-product-title">
<?php
echo '<a href="' . esc_url( $product->get_permalink() ) . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
printf('<%1$s>%2$s</%1$s>', $title_tag, Helper::eael_wp_kses( $product->get_title() ));
echo '</a>';
?>
</div>
</div>
</div>
</li>
<?php
}
} else if(($list_style_preset == 'eael-product-list-preset-1') ||
($list_style_preset == 'eael-product-list-preset-2') ||
($list_style_preset == 'eael-product-list-preset-3') ||
($list_style_preset == 'eael-product-list-preset-4')) {
if ( true === wc_get_loop_product_visibility( $product->get_id() ) || $product->is_visible() ) {
?>
<li class="product <?php echo esc_attr( "{$product_wrapper_classes} {$list_style_preset}" ) ?>">
<div class="eael-product-wrap">
<div class="product-image-wrap">
<div class="image-wrap">
<?php
if( $should_print_image_clickable ) {
echo '<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
}
if ( $is_show_badge ) {
echo( ! $product->is_in_stock() ? '<span class="eael-onsale outofstock ' . $sale_badge_preset . ' ' . $sale_badge_align . '">' . $stock_out_badge_text . '</span>' : ( $product->is_on_sale() ? '<span class="eael-onsale ' . $sale_badge_preset . ' ' . $sale_badge_align . '">' . $sale_badge_text . '</span>' : '' ) );
}
echo wp_kses_post( $product->get_image( $settings['eael_product_grid_image_size_size'], [ 'loading' => 'eager' ] ) );
if( $should_print_image_clickable ) {
echo '</a>';
}
?>
</div>
</div>
<div class="product-details-wrap">
<?php
do_action( 'eael_woocommerce_before_shop_loop_item' );
if ( $settings['eael_wc_loop_hooks'] === 'yes' ) {
do_action( 'woocommerce_before_shop_loop_item' );
}
if ($list_style_preset == 'eael-product-list-preset-2') {
echo '<div class="eael-product-title">
<a href="' . esc_url( $product->get_permalink() ) . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
printf('<%1$s>%2$s</%1$s>', $title_tag, Helper::eael_wp_kses( $product->get_title() ));
echo '</a>
</div>';
if ( $should_print_excerpt ) {
echo '<div class="eael-product-excerpt">';
echo '<p>' . wp_trim_words(strip_shortcodes(get_the_excerpt()), $settings['eael_product_grid_excerpt_length'], $settings['eael_product_grid_excerpt_expanison_indicator']) . '</p>';
echo '</div>';
}
if ( $should_print_price ) {
echo '<div class="eael-product-price">'.$product->get_price_html().'</div>';
}
if ($should_print_rating) {
echo wc_get_rating_html
($product->get_average_rating(), $product->get_rating_count());
}
} elseif ($list_style_preset == 'eael-product-list-preset-3') {
echo '<div class="price-wrap">';
if ($should_print_price) {
echo '<div class="eael-product-price">'.$product->get_price_html().'</div>';
}
if ($should_print_rating) {
echo wc_get_rating_html
($product->get_average_rating(), $product->get_rating_count());
}
echo '</div>
<div class="title-wrap">
<div class="eael-product-title">
<a href="' . esc_url( $product->get_permalink() ) . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
printf('<%1$s>%2$s</%1$s>', $title_tag, Helper::eael_wp_kses( $product->get_title() ));
echo '</a>
</div>';
if ( $should_print_excerpt ) {
echo '<div class="eael-product-excerpt">';
echo '<p>' . wp_trim_words(strip_shortcodes(get_the_excerpt() ? get_the_excerpt() :
get_the_content()), $settings['eael_product_grid_excerpt_length'], $settings['eael_product_grid_excerpt_expanison_indicator']) . '</p>';
echo '</div>';
}
echo '</div>';
} elseif ($list_style_preset == 'eael-product-list-preset-4') {
if ($should_print_rating) {
echo wc_get_rating_html
($product->get_average_rating(), $product->get_rating_count());
}
echo '<div class="eael-product-title">
<a href="' . esc_url( $product->get_permalink() ) . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
printf('<%1$s>%2$s</%1$s>', $title_tag, Helper::eael_wp_kses( $product->get_title() ));
echo '</a>
</div>';
if ( $should_print_excerpt ) {
echo '<div class="eael-product-excerpt">';
echo '<p>' . wp_trim_words(strip_shortcodes(get_the_excerpt() ? get_the_excerpt() :
get_the_content()), $settings['eael_product_grid_excerpt_length'], $settings['eael_product_grid_excerpt_expanison_indicator']) . '</p>';
echo '</div>';
}
if ( $should_print_price ) {
echo '<div class="eael-product-price">'.$product->get_price_html().'</div>';
}
} else {
echo '<div class="eael-product-title">
<a href="' . esc_url( $product->get_permalink() ) . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
printf('<%1$s>%2$s</%1$s>', $title_tag, Helper::eael_wp_kses( $product->get_title() ));
echo '</a>
</div>';
if ( $should_print_price ) {
echo '<div class="eael-product-price">'.$product->get_price_html().'</div>';
}
if ($should_print_rating) {
echo wc_get_rating_html
($product->get_average_rating(), $product->get_rating_count());
}
if ( $should_print_excerpt ) {
echo '<div class="eael-product-excerpt">';
echo '<p>' . wp_trim_words(strip_shortcodes(get_the_excerpt() ? get_the_excerpt() :
get_the_content()), $settings['eael_product_grid_excerpt_length'], $settings['eael_product_grid_excerpt_expanison_indicator']) . '</p>';
echo '</div>';
};
}
?>
<ul class="icons-wrap <?php echo esc_attr( $settings['eael_product_action_buttons_preset'] ); ?>">
<?php
if ( $should_print_compare_btn ) {
echo '<li class="add-to-compare">';
Product_Grid::print_compare_button( $product->get_id(), 'icon' );
echo '</li>';
}
?>
<li class="add-to-cart"><?php
woocommerce_template_loop_add_to_cart(); ?></li>
<?php
if ( ! empty( $should_print_wishlist_btn ) ) {
echo '<li class="add-to-whishlist">';
echo do_shortcode('[yith_wcwl_add_to_wishlist]');
echo '</li>';
}
?>
<?php
if( $should_print_quick_view ){?>
<li class="eael-product-quick-view">
<a id="eael_quick_view_<?php echo uniqid(); ?>" data-quickview-setting="<?php echo htmlspecialchars(json_encode($quick_view_setting),ENT_QUOTES); ?>"
class="eael-product-grid-open-popup open-popup-link">
<i class="fas fa-eye"></i>
</a>
</li>
<?php } ?>
</ul>
<?php
if ( $settings['eael_wc_loop_hooks'] === 'yes' ) {
do_action( 'woocommerce_after_shop_loop_item' );
}
do_action( 'eael_woocommerce_after_shop_loop_item' );
?>
</div>
</div>
</li>
<?php
}
}else {
if($settings['eael_product_grid_rating']!='yes'){
remove_action('woocommerce_after_shop_loop_item_title','woocommerce_template_loop_rating',5);
}
add_action('woocommerce_before_shop_loop_item_title',function(){
global $product;
if ( ! $product->is_in_stock() ) {
remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
echo '<span class="outofstock-badge">'.__('Stock ', 'essential-addons-for-elementor-lite'). '<br />' . __('Out', 'essential-addons-for-elementor-lite').'</span>';
}
},9);
if ( $should_print_compare_btn ) {
add_action( 'woocommerce_after_shop_loop_item', [
'\Essential_Addons_Elementor\Elements\Product_Grid',
'print_compare_button',
] );
}
$thumb_size = isset($settings['eael_product_grid_image_size_size']) ? $settings['eael_product_grid_image_size_size'] : '';
global $eael_thumb_default;
add_filter( 'single_product_archive_thumbnail_size', function($size)use($thumb_size){
global $eael_thumb_default;
$eael_thumb_default = $size;
return $thumb_size != '' ? $thumb_size : $size ;
});
wc_get_template_part( 'content', 'product' );
add_filter( 'single_product_archive_thumbnail_size', function($size){
global $eael_thumb_default;
return !empty($eael_thumb_default) ? $eael_thumb_default : $size;
});
if ( $should_print_compare_btn ) {
remove_action( 'woocommerce_after_shop_loop_item', [
'\Essential_Addons_Elementor\Elements\Product_Grid',
'print_compare_button',
] );
}
}