To make a theme support Woocommerce add the following line of code to function.php file.
function mytheme_add_woocommerce_support() { add_theme_support( 'woocommerce' ); } add_action( 'after_setup_theme', 'mytheme_add_woocommerce_support' );
This will also help with problems with blank pages and the
<?php woocommerce_content(); ?>
not working in the woocommerce.php file. Later versions of Woocommerce require you to declare your theme supports Woocommerce or it will ignore your template overides.