Make WooFood Availability Checker to Always appears

The following snippet will make the WooFood Availability Checker to always appears regardless if the customer has already a saved address

Copy and paste the following snippet to your functions.php on your child theme

add_filter('woofood_availability_checker_always_open', function() {
    return true;

});