'; } add_action('woocommerce_before_main_content', 'bullet_wrapper_start', 10); function bullet_wrapper_end() { echo ''; } add_action('woocommerce_after_main_content', 'bullet_wrapper_end', 10); // Setup functions function bullet_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', 'bullet_woocommerce_support'); // Disbable Extra WooCoomerce Sidebar function disable_woo_commerce_sidebar() // phpcs:ignore WPThemeReview.CoreFunctionality.PrefixAllGlobals.NonPrefixedFunctionFound { remove_action('woocommerce_sidebar', 'woocommerce_get_sidebar', 10); } add_action('init', 'disable_woo_commerce_sidebar');