iPascalCase
11/9/2017 - 6:53 PM

Add support for a Wordpress theme to be used with Woocommerce Plugin

place the below code in to functions.php file of any wordpress theme to tell wordpress that this theme supports Woocommerce plugin

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