Add WooCommerce Product Bundles Compatibility to WooFood

If you want to make compatible WooCommerce Product Bundles with WooFood, you will have to use the following code snippet

You can copy it inside your functions.php on your child theme and you will enqueue the required javascript and stylesheet from Products bundles to the footer page

function wpslash_woofood_qv_pb_compatibility()
{
	WC_PB()->display->frontend_scripts();

			wp_enqueue_script( 'wc-add-to-cart-bundle' );
			wp_enqueue_style( 'wc-bundle-css' );
}
add_action("wp_footer",  "wpslash_woofood_qv_pb_compatibility");