File "single-product.php"

Full path: /home/kosmetik/public_html/wp-content/plugins/powerpack-elements/templates/woocommerce/single-product.php
File size: 464 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

if (!defined('ABSPATH')) {
    exit;
}
do_action('woocommerce_before_single_product');
if (post_password_required()) {
    echo get_the_password_form();
    return;
}
global $post;
?>

<div id="product-<?php 
the_ID();
?>" <?php 
post_class();
?>>
	<div class="pp-woo-template-builder">
		<?php 
do_action('pp_woocommerce_product_content', $post);
?>
	</div>
</div><!-- #product-<?php 
the_ID();
?> -->

<?php 
do_action('woocommerce_after_single_product');