__experimental_woocommerce_
__experimental_woocommerce_
Appears in: woocommerce.9.9.5
Hook Type: filter
Displaying hooks found in version: woocommerce.9.9.5apply_filters('__experimental_woocommerce_') is found 1 times:
- /src/Blocks/BlockTypes/AddToCartWithOptions/AddToCartWithOptions.php line 123
* @since 9.9.0 * @param mixed string|boolean The template part path if it exists * @param string $product_type The product type */ $template_part_path = apply_filters( '__experimental_woocommerce_' . $product_type . '_add_to_cart_with_options_block_template_part', false, $product_type ); } if ( is_string( $template_part_path ) && file_exists( $template_part_path ) ) { $template_part_contents = ''; // Determine if we need to load the template part from the DB, the theme or WooCommerce in that order.