Opening hours
While our restaurant is closed for renovations at the Caai, we’re still here for you!
- Event Bookings: Book us for catering or speaking engagements.
- Monthly Broth-Ups: Our pop-up season has finished, stay tuned for more events around septemer-oktober.
- Fresh Produce: Pick up hyper-local vegetables, herbs, and ferments.
- Farm Visits: Join us at Phood Farm for a day of learning and growing.
Contact us via the form below or at info@phoodkitchen.com. We’d love to connect!

$(document).ready(function() {
// List of allowed dates
var allowedDates = [
“01/11/2025”,
// “02/08/2025”,
// “03/08/2025”,
// “04/12/2025”,
“05/10/2025”,
“06/07/2025”
];
// Initialize datepicker
$(“#phoodfarm_calender”).datepicker({
beforeShowDay: function(date) {
// Format the date to MM/DD/YYYY
var formattedDate =
(“0” + (date.getMonth() + 1)).slice(-2) + “/” +
(“0” + date.getDate()).slice(-2) + “/” +
date.getFullYear();
// Check if the formatted date is in the allowedDates array
if (allowedDates.includes(formattedDate)) {
return [true, “”, “Available”];
} else {
return [false, “”, “Unavailable”];
}
},
onSelect: function(dateText, inst) {
disableTimeSlots(dateText);
}
});
function disableTimeSlots(selectedDate) {
var timeOptions = $(“select[name=’Time’]”).find(“option”);
var selectedDateFormatted = $.datepicker.formatDate(‘mm/dd/yy’, new Date(selectedDate));
if (selectedDateFormatted === “04/12/2025”) {
timeOptions.each(function() {
var timeValue = $(this).val();
if (timeValue < "15:00") {
$(this).prop('disabled', true);
} else {
$(this).prop('disabled', false);
}
});
} else {
timeOptions.prop('disabled', false);
}
}
});
})(jQuery);
.wpcf7-not-valid-tip {
color: #112154;
}
a.ui-datepicker-prev.ui-corner-all:before {
content: “\f104”;
-webkit-font-smoothing: antialiased;
font-family: awb-icons;
margin-left: 11px;
}
a.ui-datepicker-next.ui-corner-all:before {
content: “\f105”;
-webkit-font-smoothing: antialiased;
font-family: awb-icons;
margin-left: 13px;
}