Skip to content

Instantly share code, notes, and snippets.

@lukecav
Created March 15, 2021 19:29
Show Gist options
  • Select an option

  • Save lukecav/d44ab4ede5d92854a1963af233d16182 to your computer and use it in GitHub Desktop.

Select an option

Save lukecav/d44ab4ede5d92854a1963af233d16182 to your computer and use it in GitHub Desktop.
Gutenberg Block Manager disable all WooCommerce blocks
add_filter( 'gbm_disabled_blocks', function() {
return ['woocommerce/active-filters', 'woocommerce/all-products', 'woocommerce/all-reviews', 'woocommerce/product-best-sellers', 'woocommerce/featured-category', 'woocommerce/featured-product', 'woocommerce/attribute-filter', 'woocommerce/price-filter', 'woocommerce/handpicked-products', 'woocommerce/product-new', 'woocommerce/product-on-sale', 'woocommerce/product-categories', 'woocommerce/product-search', 'woocommerce/products-by-attribute', 'woocommerce/product-category', 'woocommerce/product-tag', 'woocommerce/reviews-by-category', 'woocommerce/reviews-by-product', 'woocommerce/product-top-rated', 'woocommerce/product-button', 'woocommerce/product-sale-badge', 'woocommerce/product-image', 'woocommerce/product-price', 'woocommerce/product-rating', 'woocommerce/product-summary', 'woocommerce/product-title']
});
@lukecav
Copy link
Author

lukecav commented Mar 15, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment