oont-contents/plugins/astra-addon/addons/woocommerce/templates/quick-view-product.php
2025-02-08 15:10:23 +01:00

23 lines
617 B
PHP

<?php
/**
* WooCommerce - Quick View Product
*
* @package Astra Addon
*/
while ( have_posts() ) :
the_post();
if ( get_the_ID() === absint( $args['product_id'] ) ) { ?>
<div class="ast-woo-product">
<div id="product-<?php echo esc_attr( $args['product_id'] ); ?>" <?php post_class( 'product' ); ?>>
<?php do_action( 'astra_woo_qv_product_image' ); ?>
<div class="summary entry-summary">
<div class="summary-content">
<?php do_action( 'astra_woo_quick_view_product_summary', 'quick-view' ); ?>
</div>
</div>
</div>
</div>
<?php
}
endwhile; // end of the loop.