@msintenie: Simple Catch Pro theme is not ready for WooCommerce. But you can build a child theme
Crate a new child theme where you can create two files: style.css and functions.php
style.css code as below:
/*
Theme Name: Simple Catch Pro WooCommerce
Theme URI: http://catchthemes.com/themes/simple-catch-pro/
Description: Child theme for the Simple Catch Pro to suppor WooCommerce Plugin
Author: Catch Themes
Author URI: http://catchthemes.com/
Template: simple-catch-pro
*/
@import url("../simple-catch-pro/style.css");
functions.php code as below:
<?php
/**
* Adding support for WooCommerce Plugin
*
* uses remove_action to remove the WooCommerce Wrapper and add_action to add Simple Catch Wrapper
*
*/
remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
add_action('woocommerce_before_main_content', 'simplecatch_child_woocommerce_start', 15);
function simplecatch_child_woocommerce_start() {
echo '<section class="page woocommerce">';
}
add_action('woocommerce_after_main_content', 'simplecatch_child_woocommerce_end', 15);
function simplecatch_child_woocommerce_end() {
echo '</section></div>';
}