diff --git a/src/BlockTemplatesController.php b/src/BlockTemplatesController.php index 38845a9ff77..38a10c96b49 100644 --- a/src/BlockTemplatesController.php +++ b/src/BlockTemplatesController.php @@ -299,8 +299,9 @@ public function get_block_templates_from_woocommerce( $slugs, $already_found_tem foreach ( $template_files as $template_file ) { // Skip the template if it's blockified, and we should only use classic ones. - if ( $this->package->is_experimental_build() && - ! BlockTemplateUtils::should_use_blockified_product_grid_templates() && + // Until the blockified Product Grid Block is implemented, we need to always skip the blockified templates. + if ( // $this->package->is_experimental_build() && + // ! BlockTemplateUtils::should_use_blockified_product_grid_templates() && strpos( $template_file, 'blockified' ) !== false ) { continue; }