Skip to content

Instantly share code, notes, and snippets.

@WProbot
Forked from lukecav/functions.php
Created March 17, 2021 04:58
Show Gist options
  • Select an option

  • Save WProbot/dd0b16b4039369b8a7bef828968ebe3b to your computer and use it in GitHub Desktop.

Select an option

Save WProbot/dd0b16b4039369b8a7bef828968ebe3b 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']
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment