I have developed a very basic WordPress theme and installed WooCommerce. Every functionality of WooCommerce is perfectly working in my theme.
Issue: Only in product detailed page, product reviews tab, reviews listing and review form are missing.
Under WooCommerce settings reviews settings is enabled and in WordPress default discussion settings is also enabled.
For product detailed page I use 'single-product.php' template with following code.
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><?php the_title();?></h2>
<?php the_content();?>
<?php endwhile; endif; ?>
Note: When I add the following in my functions.php then entire store and WooCommerce stop working and everything gets distorted.
add_theme_support( 'woocommerce' );
Please suggest how to resolve this issue.