<?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 9.3.0
*/
/*
*This file modifod and 3.6 was $product class https://cl.ly/756d2389e79e
* */
global $product;
$img_link = xs_resize( get_post_thumbnail_id(), 253, 200,true );
$terms = get_the_terms(get_the_ID(), 'product_cat');
$cat = '';
if ( $terms && ! is_wp_error($terms)) {
foreach ($terms as $term) {
$cat .= "<a href = '" . get_category_link($term->term_id) . "'>" . $term->name . "</a> ";
}
}
?>
<div class="col-md-6 xs-main-shop">
<div class="xs-product-wraper version-2">
<div class="xs-product-header media woocommerce xs-wishlist">
<?php
if ( get_option( 'woocommerce_enable_review_rating' ) === 'yes' ):
$average = $product->get_average_rating();
echo wc_get_rating_html( $average );
endif;
?>
<?php if(defined('YITH_WCWL')): ?>
<?php echo do_shortcode( '[yith_wcwl_add_to_wishlist]' ); ?>
<?php endif; ?>
</div>
<?php if(!empty($img_link)):
echo wp_get_attachment_image(attachment_url_to_postid($img_link), array(253, 200), false, array(
'alt' => get_the_title()
));
endif; ?>
<div class="xs-product-content">
<span class="product-categories">
<span class="product-categories"><?php echo marketo_return($cat); ?></span>
</span>
<a class="product-title" href="<?php echo esc_url(get_the_permalink()) ?>"><?php echo get_the_title(); ?></a>
<span class="price">
<?php echo marketo_return($product-> get_price_html());?>
</span>
</div>
<div class="xs-product-hover-area clearfix">
<div class="xs-addcart woocommerce text-center">
<?php if(function_exists('woocommerce_template_loop_add_to_cart')): ?>
<?php echo woocommerce_template_loop_add_to_cart(); ?>
<?php endif; ?>
</div>
</div>
</div>
</div>