<?php
if ( class_exists( 'woocommerce' ) ) {
get_header();
get_template_part('index-header');
if (is_product()) {
get_template_part( 'woocommerce', 'single' );
} else {
get_template_part( 'woocommerce', 'page' );
}
get_footer();
}
?>