Hi Paul,
I just installed a Woocommerce shop. The theme is compatible with Woocommerce, though you need to spend some time styling it to your requirements. I am sharing some steps to point you in the right direction.
Install Woocommerce from the plugin repository
Duplicate page.php and delete the loop. Replace it with woocommerce content.
For example, the loop in page.php looks like this:
<?php while ( have_posts() ): the_post(); ?>
<article <?php post_class('group'); ?>>
<?php get_template_part('inc/page-image'); ?>
<div class="entry themeform">
<?php if( get_post_format() ) { get_template_part('inc/post-formats'); } ?>
<?php the_content(); ?>
<div class="clear"></div>
</div><!--/.entry-->
</article>
<?php if ( ot_get_option('page-comments') == 'on' ) { comments_template('/comments.php',true); } ?>
<?php endwhile; ?>
Once you replace the content, it should look like this:
<?php woocommerce_content(); ?>
Now you have a shopping system with your wordpress install.
Note, however, that you need to customise your CSS and Woocommerce hooks to make the shop blend with the theme.
Hope this helps.
Best Regards,
Mithun