From 5915d25572012fa09f8a85f0e7e457892e085089 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Wed, 20 Jan 2016 12:01:56 -0500 Subject: [PATCH] Update to declare support for woocommerce --- functions.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/functions.php b/functions.php index e029a88..d421303 100644 --- a/functions.php +++ b/functions.php @@ -486,4 +486,8 @@ function mountpleasant_shop_order_button_text() } add_filter('woocommerce_order_button_text', 'mountpleasant_shop_order_button_text'); add_filter( 'gform_tabindex', '__return_false' ); +add_action( 'after_setup_theme', 'woocommerce_support' ); +function woocommerce_support() { + add_theme_support( 'woocommerce' ); +} ?> -- 2.17.1