{"id":25502,"date":"2025-10-27T13:44:23","date_gmt":"2025-10-27T12:44:23","guid":{"rendered":"https:\/\/www.zilte.be\/?page_id=25502"},"modified":"2025-12-12T19:25:48","modified_gmt":"2025-12-12T18:25:48","slug":"processing","status":"publish","type":"page","link":"https:\/\/www.zilte.be\/en\/book\/processing\/","title":{"rendered":"Book Processing Order"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"25502\" class=\"elementor elementor-25502 elementor-25442\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-2f6980d2 elementor-section-content-middle animated-slow elementor-section-full_width elementor-reverse-tablet elementor-reverse-mobile elementor-section-height-min-height elementor-section-height-default elementor-section-items-middle elementor-invisible\" data-id=\"2f6980d2\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div data-dce-background-image-url=\"https:\/\/www.zilte.be\/wp-content\/uploads\/2020\/03\/ZLT-depth-lines-side-cadeaubon-LNEW.png\" class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-13bc05f2\" data-id=\"13bc05f2\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-cbacd19 elementor-widget elementor-widget-spacer\" data-id=\"cbacd19\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-7928dce5\" data-id=\"7928dce5\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-f3edf9e elementor-widget elementor-widget-html\" data-id=\"f3edf9e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>\ndocument.addEventListener('DOMContentLoaded', function () {\n    \/\/ 1. Target the correct Book Form ID\n    const form = document.getElementById('confirmationbookEN');\n    if (!form) {\n        console.error('Form not found!');\n        return;\n    }\n\n    const urlParams = new URLSearchParams(window.location.search);\n    const checkoutSessionId = urlParams.get('checkout-session');\n\n    if (checkoutSessionId) {\n        console.log('Checkout Session ID:', checkoutSessionId);\n\n        fetch('\/get_stripe_details.php', {\n            method: 'POST',\n            headers: {\n                'Content-Type': 'application\/x-www-form-urlencoded'\n            },\n            body: 'session_id=' + checkoutSessionId\n        })\n        .then(response => response.json())\n        .then(data => {\n            if (data.error) {\n                console.error('Stripe Error:', data.error);\n            } \n            \/\/ 2. ADD THIS BLOCK: Handle the duplicate check\n            else if (data.status === 'already_processed') {\n                console.log('Order already processed. Stopping execution.');\n                alert(\"Order already processed\"); \n                return; \/\/ Stop here\n            } \n            \/\/ 3. Normal Processing\n            else {\n                console.log('Stripe Data:', data);\n\n                const setFieldValue = (fieldId, value, isTextarea = false) => {\n                    const element = document.getElementById(fieldId);\n                    if (element) {\n                        if (isTextarea) {\n                            const textWithBreaksHTML = value.replace(\/\\n\/g, \", \");\n                            element.value = textWithBreaksHTML; \n                        } else {\n                            element.value = value || '';\n                        }\n                        element.dispatchEvent(new Event('change', { bubbles: true }));\n                    } else {\n                        console.warn(`Field ${fieldId} not found in form`);\n                    }\n                };\n\n                \/\/ --- POPULATE FIELDS ---\n                setFieldValue('form-field-stripe_subamount', data.amount_subtotal ? (data.amount_subtotal \/ 100).toFixed(2) : '');\n                setFieldValue('form-field-stripe_amount', data.amount_total ? (data.amount_total \/ 100).toFixed(2) : '');\n                setFieldValue('form-field-billing_name', data.billing_name);\n                setFieldValue('form-field-stripe_customer_email', data.customer_email);\n                setFieldValue('form-field-customer_name', data.customer_name);\n                setFieldValue('form-field-customer_phone', data.customer_phone);\n                setFieldValue('form-field-vat_number', data.vat_number);\n                setFieldValue('form-field-payment_status', data.payment_status);\n                setFieldValue('form-field-payment_intent', data.payment_intent);\n                \n                \/\/ --- YOUR CUSTOM BOOK FIELDS ---\n                setFieldValue('form-field-signed_by', data.signed_by);\n                setFieldValue('form-field-book_language', data.book_language);\n\n                \/\/ --- ADDRESSES (With Safety Checks) ---\n                if (data.shipping_address) {\n                    const shippingAddressLines = [];\n                    if (data.shipping_name) shippingAddressLines.push(data.shipping_name);\n                    if (data.shipping_address.line1) shippingAddressLines.push(data.shipping_address.line1);\n                    if (data.shipping_address.line2) shippingAddressLines.push(data.shipping_address.line2);\n\n                    const cityStateZip = [\n                        data.shipping_address.city,\n                        data.shipping_address.state,\n                        data.shipping_address.postal_code\n                    ].filter(Boolean).join(', ');\n\n                    if (cityStateZip) shippingAddressLines.push(cityStateZip);\n                    if (data.shipping_address.country) shippingAddressLines.push(data.shipping_address.country);\n\n                    setFieldValue('form-field-shipping_address', shippingAddressLines.join('\\n'), true);\n                }\n\n                if (data.billing_address) {\n                    const billingAddressLines = [];\n                    if (data.billing_address.line1) billingAddressLines.push(data.billing_address.line1);\n                    if (data.billing_address.line2) billingAddressLines.push(data.billing_address.line2);\n\n                    const billingCityStateZip = [\n                        data.billing_address.city,\n                        data.billing_address.state,\n                        data.billing_address.postal_code\n                    ].filter(Boolean).join(', ');\n\n                    if (billingCityStateZip) billingAddressLines.push(billingCityStateZip);\n                    if (data.billing_address.country) billingAddressLines.push(data.billing_address.country);\n\n                    setFieldValue('form-field-billing_address', billingAddressLines.join('\\n'), true);\n                }\n\n                \/\/ Submit Form\n                setTimeout(function () {\n                    console.log('Triggering Elementor form submission...');\n                    const submitButton = form.querySelector('.elementor-button');\n                    if (submitButton) {\n                        submitButton.click();\n                    } else {\n                        console.error('Submit button not found in Elementor form');\n                    }\n                }, 3000);\n            }\n        })\n        .catch(error => {\n            console.error('Fetch Error:', error);\n        });\n    } else {\n        console.error('Checkout Session ID not found in URL.');\n    }\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9750419 animated-slow elementor-button-align-start elementor-mobile-button-align-stretch elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-invisible elementor-widget elementor-widget-form\" data-id=\"9750419\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;step_next_label&quot;:&quot;Volgende&quot;,&quot;step_previous_label&quot;:&quot;Vorige&quot;,&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:750,&quot;button_width&quot;:&quot;50&quot;,&quot;button_width_mobile&quot;:&quot;100&quot;,&quot;dce_confirm_dialog_enabled&quot;:&quot;no&quot;,&quot;step_type&quot;:&quot;number_text&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;,&quot;label_icon_size&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;field_icon_size&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"form.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<form class=\"elementor-form\" method=\"post\" id=\"confirmationbookEN\" name=\"confirmationbookEN\" aria-label=\"confirmationbookEN\">\n\t\t\t<input type=\"hidden\" name=\"post_id\" value=\"25502\"\/>\n\t\t\t<input type=\"hidden\" name=\"form_id\" value=\"9750419\"\/>\n\t\t\t<input type=\"hidden\" name=\"referer_title\" value=\"Zilte\" \/>\n\n\t\t\t\n\t\t\t<div class=\"elementor-form-fields-wrapper elementor-labels-above\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-stripe_amount elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[stripe_amount]\" id=\"form-field-stripe_amount\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-stripe_subamount elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[stripe_subamount]\" id=\"form-field-stripe_subamount\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-payment_status elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[payment_status]\" id=\"form-field-payment_status\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-payment_intent elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[payment_intent]\" id=\"form-field-payment_intent\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-billing_name elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[billing_name]\" id=\"form-field-billing_name\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-stripe_customer_email elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[stripe_customer_email]\" id=\"form-field-stripe_customer_email\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-customer_phone elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[customer_phone]\" id=\"form-field-customer_phone\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-billing_address elementor-col-100\">\n\t\t\t\t\t<textarea class=\"elementor-field-textual elementor-field  elementor-size-sm\" name=\"form_fields[billing_address]\" id=\"form-field-billing_address\" rows=\"6\"><\/textarea>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-customer_name elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[customer_name]\" id=\"form-field-customer_name\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-vat_number elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[vat_number]\" id=\"form-field-vat_number\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-signed_by elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[signed_by]\" id=\"form-field-signed_by\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-book_language elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[book_language]\" id=\"form-field-book_language\" class=\"elementor-field elementor-size-sm  elementor-field-textual\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-shipping_address elementor-col-100\">\n\t\t\t\t\t<textarea class=\"elementor-field-textual elementor-field  elementor-size-sm\" name=\"form_fields[shipping_address]\" id=\"form-field-shipping_address\" rows=\"6\"><\/textarea>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-group elementor-column elementor-field-type-submit elementor-col-50 e-form__buttons elementor-sm-100\">\n\t\t\t\t\t<button class=\"elementor-button elementor-size-sm\" type=\"submit\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">no action-auto<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/form>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-dce-text-color=\"#333333\" class=\"elementor-element elementor-element-120a760d animated-slow elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"120a760d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:250}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Processing Payment &#8230;<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-dce-text-color=\"#333333\" class=\"elementor-element elementor-element-7f0c736 animated-slow elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"7f0c736\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:500}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Please do not close this window<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-dce-text-color=\"#333333\" class=\"elementor-element elementor-element-763ee3d4 animated-slow elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"763ee3d4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:500}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>We are processing your purchase in our system. Please wait a moment, you will receive a confirmation screen shortly.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Processing Payment &#8230; Please do not close this window We are processing your purchase in our system. Please wait a moment, you will receive a confirmation screen shortly.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":25486,"menu_order":11,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"footnotes":""},"class_list":["post-25502","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Zilte*** Antwerpen | Viki Geunes &#8211; Book Processing<\/title>\n<meta name=\"description\" content=\"The long-awaited and highly personal culinary highlights of Viki Geunes, chef at Zilte***\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.zilte.be\/en\/book\/processing\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Zilte*** Antwerpen | Viki Geunes - Cadeaubon\" \/>\n<meta property=\"og:description\" content=\"Restaurant Zilte van Chef Viki Geunes*** is gelegen op de bovenste verdieping van het MAS museum te Antwerpen. Eigentijds drie-sterren Michelinrestaurant.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.zilte.be\/en\/book\/processing\/\" \/>\n<meta property=\"og:site_name\" content=\"Zilte\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/zilte.restaurant\/\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-12T18:25:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.zilte.be\/wp-content\/uploads\/2020\/06\/zilte-fb-ogbanner.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.zilte.be\\\/en\\\/book\\\/processing\\\/\",\"url\":\"https:\\\/\\\/www.zilte.be\\\/en\\\/book\\\/processing\\\/\",\"name\":\"Zilte*** Antwerpen | Viki Geunes &#8211; Book Processing\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.zilte.be\\\/en\\\/#website\"},\"datePublished\":\"2025-10-27T12:44:23+00:00\",\"dateModified\":\"2025-12-12T18:25:48+00:00\",\"description\":\"The long-awaited and highly personal culinary highlights of Viki Geunes, chef at Zilte***\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.zilte.be\\\/en\\\/book\\\/processing\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.zilte.be\\\/en\\\/book\\\/processing\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.zilte.be\\\/en\\\/book\\\/processing\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.zilte.be\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Book\",\"item\":\"https:\\\/\\\/www.zilte.be\\\/en\\\/book\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Book Processing Order\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.zilte.be\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.zilte.be\\\/en\\\/\",\"name\":\"Zilte - Viki Geunes\",\"description\":\"Viki Geunes** - Antwerpen\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.zilte.be\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.zilte.be\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.zilte.be\\\/en\\\/#organization\",\"name\":\"Zilte - Viki Geunes\",\"url\":\"https:\\\/\\\/www.zilte.be\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.zilte.be\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.zilte.be\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/Zilte-logo-80px.svg\",\"contentUrl\":\"https:\\\/\\\/www.zilte.be\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/Zilte-logo-80px.svg\",\"width\":258,\"height\":287,\"caption\":\"Zilte - Viki Geunes\"},\"image\":{\"@id\":\"https:\\\/\\\/www.zilte.be\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/zilte.restaurant\\\/\",\"https:\\\/\\\/www.instagram.com\\\/zilte.restaurant\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Zilte*** Antwerpen | Viki Geunes &#8211; Book Processing","description":"The long-awaited and highly personal culinary highlights of Viki Geunes, chef at Zilte***","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.zilte.be\/en\/book\/processing\/","og_locale":"en_US","og_type":"article","og_title":"Zilte*** Antwerpen | Viki Geunes - Cadeaubon","og_description":"Restaurant Zilte van Chef Viki Geunes*** is gelegen op de bovenste verdieping van het MAS museum te Antwerpen. Eigentijds drie-sterren Michelinrestaurant.","og_url":"https:\/\/www.zilte.be\/en\/book\/processing\/","og_site_name":"Zilte","article_publisher":"https:\/\/www.facebook.com\/zilte.restaurant\/","article_modified_time":"2025-12-12T18:25:48+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.zilte.be\/wp-content\/uploads\/2020\/06\/zilte-fb-ogbanner.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.zilte.be\/en\/book\/processing\/","url":"https:\/\/www.zilte.be\/en\/book\/processing\/","name":"Zilte*** Antwerpen | Viki Geunes &#8211; Book Processing","isPartOf":{"@id":"https:\/\/www.zilte.be\/en\/#website"},"datePublished":"2025-10-27T12:44:23+00:00","dateModified":"2025-12-12T18:25:48+00:00","description":"The long-awaited and highly personal culinary highlights of Viki Geunes, chef at Zilte***","breadcrumb":{"@id":"https:\/\/www.zilte.be\/en\/book\/processing\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.zilte.be\/en\/book\/processing\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.zilte.be\/en\/book\/processing\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.zilte.be\/en\/"},{"@type":"ListItem","position":2,"name":"Book","item":"https:\/\/www.zilte.be\/en\/book\/"},{"@type":"ListItem","position":3,"name":"Book Processing Order"}]},{"@type":"WebSite","@id":"https:\/\/www.zilte.be\/en\/#website","url":"https:\/\/www.zilte.be\/en\/","name":"Zilte - Viki Geunes","description":"Viki Geunes** - Antwerpen","publisher":{"@id":"https:\/\/www.zilte.be\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.zilte.be\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.zilte.be\/en\/#organization","name":"Zilte - Viki Geunes","url":"https:\/\/www.zilte.be\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.zilte.be\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.zilte.be\/wp-content\/uploads\/2020\/03\/Zilte-logo-80px.svg","contentUrl":"https:\/\/www.zilte.be\/wp-content\/uploads\/2020\/03\/Zilte-logo-80px.svg","width":258,"height":287,"caption":"Zilte - Viki Geunes"},"image":{"@id":"https:\/\/www.zilte.be\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/zilte.restaurant\/","https:\/\/www.instagram.com\/zilte.restaurant\/"]}]}},"permalink_manager":null,"_links":{"self":[{"href":"https:\/\/www.zilte.be\/en\/wp-json\/wp\/v2\/pages\/25502","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.zilte.be\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.zilte.be\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.zilte.be\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.zilte.be\/en\/wp-json\/wp\/v2\/comments?post=25502"}],"version-history":[{"count":5,"href":"https:\/\/www.zilte.be\/en\/wp-json\/wp\/v2\/pages\/25502\/revisions"}],"predecessor-version":[{"id":26069,"href":"https:\/\/www.zilte.be\/en\/wp-json\/wp\/v2\/pages\/25502\/revisions\/26069"}],"up":[{"embeddable":true,"href":"https:\/\/www.zilte.be\/en\/wp-json\/wp\/v2\/pages\/25486"}],"wp:attachment":[{"href":"https:\/\/www.zilte.be\/en\/wp-json\/wp\/v2\/media?parent=25502"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}