Files
Landing/wp-content/themes/upstudy/woocommerce/yith-quick-view-content.php
T

47 lines
1.1 KiB
PHP
Raw Normal View History

2026-04-23 04:33:43 +03:30
<?php
/**
* Quick view content.
*
* @author YITH
* @package YITH WooCommerce Quick View
* @version 1.0.0
*/
defined( 'YITH_WCQV' ) || exit; // Exit if accessed directly.
while ( have_posts() ) :
the_post();
?>
<div class="product">
<div id="product-<?php the_ID(); ?>" <?php post_class( 'product' ); ?>>
<?php do_action( 'yith_wcqv_product_image' );
echo '<div class="upstudy-yith-wcqv-wrapper summary entry-summary">';
echo '<div class="summary-content">';
woocommerce_template_single_title();
upstudy_woo_single_product_rating( true );
echo '<div class="product-pricing">';
woocommerce_template_single_price();
echo '</div>';
echo '<div class="product-description">';
woocommerce_template_single_excerpt();
echo '</div>';
echo '<div class="product-cart-wrapper">';
woocommerce_template_single_add_to_cart();
echo '</div>';
echo '<div class="product-meta">';
woocommerce_template_single_meta();
echo '</div>';
echo '</div>';
echo '</div>';
echo '</div>';
echo '</div>';
endwhile; // end of the loop.