File: /home/clinicamaciel/www/index_lixo/wp-content/themes/virtue/woocommerce/content-product.php
<?php
/**
* The template for displaying product content within loops
*
* Override this template by copying it to yourtheme/woocommerce/content-product.php
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.6.1
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
global $product, $woocommerce_loop, $virtue, $post;
// Store loop count we're currently on
if ( empty( $woocommerce_loop['loop'] ) )
$woocommerce_loop['loop'] = 0;
// Store column count for displaying the grid
if ( empty( $woocommerce_loop['columns'] ) )
$woocommerce_loop['columns'] = apply_filters( 'loop_shop_columns', 4 );
if ($woocommerce_loop['columns'] == '3'){
$itemsize = 'tcol-md-4 tcol-sm-4 tcol-xs-6 tcol-ss-12';
} else {
$itemsize = 'tcol-md-3 tcol-sm-4 tcol-xs-6 tcol-ss-12';
}
// Ensure visibility
if ( ! $product || ! $product->is_visible() ) {
return;
}
// Increase loop count
$woocommerce_loop['loop']++;
// Extra post classes
$classes = array();
$classes[] = 'grid_item';
$classes[] = 'product_item';
$classes[] = 'clearfix';
?>
<div class="<?php echo esc_attr($itemsize);?> kad_product">
<div <?php post_class( $classes ); ?>>
<?php do_action( 'woocommerce_before_shop_loop_item' ); ?>
<a href="<?php the_permalink(); ?>" class="product_item_link product_img_link">
<?php
/**
* woocommerce_before_shop_loop_item_title hook
*
* @hooked woocommerce_show_product_loop_sale_flash - 10
* @hooked woocommerce_template_loop_product_thumbnail - 10
*/
do_action( 'woocommerce_before_shop_loop_item_title' );
?>
</a>
<div class="product_details">
<a href="<?php the_permalink(); ?>" class="product_item_link">
<?php
/**
* woocommerce_shop_loop_item_title hook
*
* @hooked woocommerce_template_loop_product_title - 10
*/
do_action( 'woocommerce_shop_loop_item_title' );
?>
</a>
<?php if ( apply_filters( 'kadence_product_archive_excerpt', true ) ) : ?>
<div class="product_excerpt">
<?php
if ($post->post_excerpt){
echo apply_filters( 'archive_woocommerce_short_description', $post->post_excerpt );
} else {
the_excerpt();
} ?>
</div>
<?php endif; ?>
</div>
<?php
/**
* woocommerce_after_shop_loop_item_title hook
*
* @hooked woocommerce_template_loop_price - 10
*/
do_action( 'woocommerce_after_shop_loop_item_title' );
?>
<?php do_action( 'woocommerce_after_shop_loop_item' ); ?>
</div>
</div>