<?php
/**
* The template to override product content within loops
*/
defined( 'ABSPATH' ) || exit;
global $product;
// Ensure visibility.
if ( empty( $product ) || ! $product->is_visible() ) {
return;
}
?>
<li <?php wc_product_class( '', $product ); ?>>
<div class="product-single">
<div class="product-img">
<?php
/**
* Hook: woocommerce_before_shop_loop_item.
*
* @hooked woocommerce_template_loop_product_link_open - 10
*/
do_action( 'woocommerce_before_shop_loop_item' );
?>
<a href="<?php echo esc_url( get_permalink() ); ?>">
<?php the_post_thumbnail(); ?>
</a>
<?php if ( $product->is_on_sale() ) : ?>
<?php echo apply_filters( 'woocommerce_sale_flash', '<div class="sale-ribbon"><span class="tag-line">' . esc_html__( 'Sale', 'neom-blog' ) . '</span></div>', $post, $product ); ?>
<?php endif; ?>
<div class="product-action">
<?php
/**
* Hook: woocommerce_after_shop_loop_item.
*
* @hooked woocommerce_template_loop_product_link_close - 5
* @hooked woocommerce_template_loop_add_to_cart - 10
*/
do_action( 'woocommerce_after_shop_loop_item' );
?>
</div>
</div>
<div class="product-content">
<div class="pro-rating">
<?php if ( $average = $product->get_average_rating() ) : ?>
<?php echo '<div class="star-rating" title="' . sprintf( esc_attr__( 'Rated %s out of 5', 'neom-blog' ), $average ) . '"><span style="width:' . ( ( $average / 5 ) * 100 ) . '%"><strong itemprop="ratingValue" class="rating">' . esc_html( $average ) . '</strong> ' . esc_html__( 'out of 5', 'neom-blog' ) . '</span></div>'; ?>
<?php endif; ?>
</div>
<h3><a href="<?php echo esc_url( get_permalink() ); ?>"><?php the_title(); ?></a></h3>
<div class="price">
<?php echo $product->get_price_html(); ?>
</div>
</div>
</div>
</li>