'; } add_action('woocommerce_before_main_content', 'bootstrap_wp_starter_wrapper_start', 10); function bootstrap_wp_starter_wrapper_end() { echo ''; } add_action('woocommerce_after_main_content', 'bootstrap_wp_starter_wrapper_end', 10); // Setup functions function bootstrap_wp_starter_woocommerce_support() { add_theme_support('woocommerce'); add_theme_support('wc-product-gallery-zoom'); add_theme_support('wc-product-gallery-lightbox'); add_theme_support('wc-product-gallery-slider'); } add_action('after_setup_theme', 'bootstrap_wp_starter_woocommerce_support'); // Disbable Extra WooCoomerce Sidebar function disable_woo_commerce_sidebar() { remove_action('woocommerce_sidebar', 'woocommerce_get_sidebar', 10); } add_action('init', 'disable_woo_commerce_sidebar');