<?php
/**
 * The Template for displaying all single products
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/content-single-product.php.
 *
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see      https://docs.woocommerce.com/document/template-structure/
 * @author   WooThemes
 * @package  WooCommerce/Templates
 * @version  1.6.4
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Hook for print notices.
 * woocommerce_before_single_product hook.
 *
 * @hooked wc_print_notices - 10
 */
do_action( 'woocommerce_before_single_product' );

if ( post_password_required() ) {
	echo get_the_password_form(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
	return;
}
global $product, $post;
if ( $product && !is_a( $product, 'WC_Product' ) ) {
    $product = wc_get_product( $post->ID );
}
?>

<div id="product-<?php the_ID(); ?>" <?php post_class(); ?>>
	<div class="woolentor-woo-template-builder">
		<?php
			/**
			 * Hook for product builder.
			 * woolentor_woocommerce_product_builder
			 *
			 * @hooked wl_get_product_content_elementor() - 5.
			 * @hooked wl_get_default_product_data() - 10.
			 */
			do_action( 'woolentor_woocommerce_product_content', $post );
		?>
	</div>
</div><!-- #product-<?php //the_ID(); ?> -->

<?php do_action( 'woocommerce_after_single_product' ); ?>
