Adding WooCommerce to a Custom Theme – not working [closed]

You’ll need to declare support for WooCommerce in your themes functions.php file:

function mytheme_add_woocommerce_support() {
    add_theme_support( 'woocommerce' );
}
add_action( 'after_setup_theme', 'mytheme_add_woocommerce_support' );

Hope this helps!