File: /home/dermova/www/india/wp-content/themes/ri-colias/woocommerce/yith-quick-view-content.php
<?php
/*
* This file belongs to the YIT Framework.
*
* This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://www.gnu.org/licenses/gpl-3.0.txt
*/
while ( have_posts() ) : the_post(); ?>
<div class="product">
<div itemscope itemtype="<?php echo woocommerce_get_product_schema(); ?>" id="product-<?php the_ID(); ?>" <?php post_class('product'); ?>>
<div class="col-md-5">
<?php do_action( 'yith_wcqv_product_image' ); ?>
</div>
<div class="col-md-7">
<div class="summary entry-summary">
<div class="summary-content">
<?php do_action( 'yith_wcqv_product_summary' ); ?>
</div>
</div>
</div>
</div>
</div>
<?php endwhile; // end of the loop.