# shopbuilder/1.1.1/templates/quick-view/content.php

ShopBuilder – WooCommerce Builder For Elementor, version 1.1.1. 53 lines.

- Page: https://pluginprobe.com/plugins/shopbuilder/1.1.1/code/templates/quick-view/content.php
- Raw: https://pluginprobe.com/plugins/shopbuilder/1.1.1/raw/templates/quick-view/content.php
- Modified: 2023-05-25T10:51:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/shopbuilder/1.1.1/code/templates/quick-view/content.php#L10-L20`.

```php
<?php
/**
 * Quick view content template
 *
 * @author  RadiusTheme
 * @package ShopBuilder QuickView
 * @version 1.0.0
 */


/**
 * Template variables:
 *
 * @var $product_id                int Current product id
 * @var $button_text               string Button text
 * @var $icon_html                 string Icon for Add to Wishlist button
 * @var $classes                   string Classed for Add to Wishlist button
 * @var $left_text                 string Html allowed
 * @var $right_text                string Html allowed
 */

/**
 * Quick view content.
 *
 * @author  YITH
 * @package YITH WooCommerce Quick View
 * @version 1.0.0
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

while ( have_posts() ) :
	the_post();
	?>

    <div class="quick-view-product-wrapper">

        <div id="product-<?php the_ID(); ?>" <?php post_class( 'product' ); ?>>

			<?php do_action( 'rtsb/wcqv/product/image' ); ?>

            <div class="summary entry-summary">
                <div class="summary-content">
					<?php do_action( 'rtsb/wcqv/product/summary' ); ?>
                </div>
            </div>

        </div>

    </div>
<?php
endwhile; // end of the loop.

```
