Integrate WooCommerce theme with a WordPress theme [closed]

I would add it from the start so you don’t have to go back to it, and it’s a really simple process of creating a woocommerce.php file in your theme and then add the following to your functions.php

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

To create the woocommerce.php, copy your page.php, remove the loop code and replace with:

<?php woocommerce_content(); ?>

More info at https://docs.woothemes.com/document/third-party-custom-theme-compatibility/