I'm currently working on a custom Wordpress/ Woocommerce template. However the single product page is missing some parts of information (product image, prices, etc.) which is not being displayed. When I activate the storefront theme on the other hand all that information is beeing displayed.
Here's all the details that are not being displayed on my product page:
- List item
- Link for resetting varaition selection
- Price of selected variation
- Stock level
- List item
The following two pictures will show the difference:
This is the code for the single-product.php file in my template's directory:
<?php
/**
* The main file for Single pages
*/
get_header();
?>
<div id="single-product" class="padded-content">
<div class="container">
<?php
woocommerce_content();
?>
</div>
</div>
<?php get_footer(); ?>