WooFood AJAX Popup Compatibility Mode

In case you are having issues with any third party plugins when using WooFood you can add the following snippet to your functions.php on your child theme to turn on the old way of the quickview and enable possible support with other third party WooCommerce Plugins

  add_action('woofood_quickview_product_content', function() { 

	remove_action( 'woofood_quickview_product_content', 'woocommerce_template_single_rating', 10 );
    remove_action( 'woofood_quickview_product_content', 'woocommerce_template_single_price', 15 );
    remove_action( 'woofood_quickview_product_content', 'woocommerce_template_single_excerpt', 20 );
    remove_action( 'woofood_quickview_product_content', 'woocommerce_template_single_add_to_cart', 25 );

    	do_action("woocommerce_single_product_summary");

    	 });