{"id":2472,"date":"2024-09-23T12:21:32","date_gmt":"2024-09-23T12:21:32","guid":{"rendered":"https:\/\/shop.mauricedaamen.nl\/?page_id=2472"},"modified":"2024-09-23T12:26:04","modified_gmt":"2024-09-23T12:26:04","slug":"michelin","status":"publish","type":"page","link":"https:\/\/shop.mauricedaamen.nl\/en\/michelin\/","title":{"rendered":"Michelin"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"2472\" class=\"elementor elementor-2472\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bee6e60 e-flex e-con-boxed e-con e-parent\" data-id=\"bee6e60\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d674625 elementor-widget elementor-widget-spacer\" data-id=\"d674625\" 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<div class=\"elementor-element elementor-element-11c73d1 elementor-widget elementor-widget-html\" data-id=\"11c73d1\" 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>\njQuery(document).ready(function($) {\n    \/\/ Defineer de mapping van nodes naar product-IDs\n    var productMapping = {\n        \"1\": [2479]\n    };\n    \/\/ Verzamel alle unieke product-IDs uit de productMapping\n    var productIds = [];\n    $.each(productMapping, function(nodeId, products) {\n        $.each(products, function(index, productId) {\n            if (productIds.indexOf(productId) === -1) {\n                productIds.push(productId);\n            }\n        });\n    });\n\n    var productData = {}; \/\/ We zullen deze vullen met productgegevens via AJAX\n\n    \/\/ Gebruik bestaande AJAX-URL of val terug op admin-ajax.php\n    var ajaxUrl = typeof wc_cart_fragments_params !== 'undefined' ? wc_cart_fragments_params.ajax_url : '\/wp-admin\/admin-ajax.php';\n\n    \/\/ AJAX-verzoek om productgegevens (naam en prijs) op te halen\n    $.ajax({\n        url: ajaxUrl,\n        method: 'POST',\n        data: {\n            action: 'get_product_data',\n            product_ids: productIds\n        },\n        success: function(response) {\n            if (response.success) {\n                productData = response.data;\n                initializeProductScripts(); \/\/ Start de rest van je scripts\n            } else {\n                alert('Kon de productgegevens niet ophalen.');\n            }\n        },\n        error: function() {\n            alert('Er is een fout opgetreden bij het ophalen van de productgegevens.');\n        }\n    });\n\n    function initializeProductScripts() {\n        function formatPrice(price) {\n            return parseFloat(price).toFixed(2).replace('.', ',');\n        }\n\n        \/\/ Update de productnamen en prijzen in de HTML\n        $('.custom-product-container').each(function() {\n            var productId = $(this).data('product-id');\n            var productInfo = productData[productId];\n            if (productInfo) {\n                \/\/ Update de productnaam in h3\n                $(this).find('h3').text(productInfo.name);\n                $(this).find('h3').addClass('product-name');\n                \/\/ Update de prijs per eenheid\n                $(this).find('.price-per-unit').text(`\u20ac${formatPrice(productInfo.price)}`);\n            }\n        });\n        \n        \/\/ Event handler voor hoeveelheidswijziging\n        $('.product-quantity').on('change', function() {\n            var nodeId = $(this).closest('.node-container').data('node-id');\n            updateNodeTotalPrice(nodeId);\n        });\n\n        \/\/ Klikhandlers voor de knoppen binnen elke node-container\n        $('.node-container').on('click', '.custom-add-to-cart-button-pc', function(event) {\n            event.preventDefault();\n            var nodeContainer = $(this).closest('.node-container');\n            handleAddToCart(nodeContainer, false);\n        });\n        \n        $('.node-container').on('click', '.go-to-checkout-button-pc', function(event) {\n            event.preventDefault();\n            var nodeContainer = $(this).closest('.node-container');\n            handleAddToCart(nodeContainer, true);\n        });\n\n        \/\/ Functie om de totaalprijs van een node bij te werken\n        function updateNodeTotalPrice(nodeId) {\n            var nodeTotal = 0;\n            var nodeContainer = $('.node-container[data-node-id=\"' + nodeId + '\"]');\n\n            nodeContainer.find('.custom-product-container').each(function() {\n                var productId = $(this).data('product-id');\n                var quantity = parseInt($(this).find('.product-quantity').val(), 10) || 0;\n                var price = productData[productId].price;\n                var totalPrice = quantity * price;\n\n                \/\/ Update de totaalprijs voor dit product\n                $(this).find('.product-total-price .total-price-value').text(`\u20ac${formatPrice(totalPrice)}`);\n\n                \/\/ Tel op bij de node totaalprijs\n                nodeTotal += totalPrice;\n            });\n\n            \/\/ Update de totaalprijs voor de node in het overall-total-price element binnen deze node\n            nodeContainer.find('.overall-total-price .total-price-value').text(`\u20ac${formatPrice(nodeTotal)}`);\n        }\n\n        \/\/ Functie om producten te verzamelen om toe te voegen aan de winkelwagen\n        function collectProductsToAdd() {\n            var productsToAdd = [];\n            $('.custom-product-container').each(function() {\n                var productId = $(this).data('product-id');\n                var quantity = parseInt($(this).find('.product-quantity').val(), 10);\n                if (quantity > 0) {\n                    productsToAdd.push({ product_id: productId, quantity: quantity });\n                }\n            });\n            return productsToAdd;\n        }\n\n        \/\/ Functie om producten toe te voegen aan de winkelwagen\n        async function handleAddToCart(redirectToCheckout) {\n            var productsToAdd = collectProductsToAdd();\n            var buttonSelector = redirectToCheckout ? '#go-to-checkout-button-pc' : '#custom-add-to-cart-button-pc';\n\n            if (productsToAdd.length === 0) {\n                if (redirectToCheckout) {\n                    window.location.href = '\/cart\/'; \/\/ Ga naar winkelwagen als er niets is geselecteerd\n                } else {\n                    alert('Voeg eerst producten toe voordat je doorgaat.');\n                }\n                return;\n            }\n\n            try {\n                $(buttonSelector).prop('disabled', true).text('Bezig...');\n\n                const response = await $.ajax({\n                    url: ajaxUrl,\n                    method: 'POST',\n                    data: {\n                        action: 'custom_bulk_add_to_cart',\n                        products: productsToAdd\n                    }\n                });\n\n                if (response.success) {\n                    refreshCart();\n                    resetQuantitiesAndTotalPrices();\n\n                    if (redirectToCheckout) {\n                        window.location.href = '\/cart\/';\n                    } else {\n                        alert('Producten toegevoegd aan de winkelwagen!');\n                    }\n                } else {\n                    alert('Er was een probleem met het toevoegen aan de winkelwagen.');\n                }\n            } catch (error) {\n                alert('Er is een fout opgetreden tijdens het verzoek.');\n            } finally {\n                $(buttonSelector).prop('disabled', false).text(redirectToCheckout ? 'Afrekenen' : 'Toevoegen');\n            }\n        }\n\n        \/\/ Functie om de winkelwagen te verversen\n        function refreshCart() {\n            $.ajax({\n                type: 'POST',\n                url: wc_cart_fragments_params.ajax_url,\n                data: {\n                    action: 'woocommerce_get_refreshed_fragments'\n                },\n                success: function(data) {\n                    if (data && data.fragments) {\n                        $.each(data.fragments, function(key, value) {\n                            $(key).replaceWith(value);\n                        });\n                    }\n                },\n                dataType: 'json'\n            });\n        }\n\n        \/\/ Functie om hoeveelheden en totaalprijzen te resetten\n        function resetQuantitiesAndTotalPrices() {\n            $('.product-quantity').val('0');\n            $('.product-total-price .total-price-value, .overall-total-price .total-price-value').text('\u20ac0,00');\n        }\n\n        \/\/ Initialisatie\n        resetQuantitiesAndTotalPrices();\n    }\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c4defb5 e-flex e-con-boxed e-con e-parent\" data-id=\"c4defb5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-937427d e-con-full elementor-hidden-mobile e-flex e-con e-child\" data-id=\"937427d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ff63506 e-con-full e-flex e-con e-child\" data-id=\"ff63506\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7f8dd03 e-flex e-con-boxed e-con e-child\" data-id=\"7f8dd03\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3b6e19f elementor-arrows-position-inside elementor-pagination-position-outside elementor-widget elementor-widget-image-carousel\" data-id=\"3b6e19f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;slides_to_show&quot;:&quot;1&quot;,&quot;navigation&quot;:&quot;both&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;yes&quot;,&quot;effect&quot;:&quot;slide&quot;,&quot;speed&quot;:500}\" data-widget_type=\"image-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-image-carousel-wrapper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Image Carousel\" dir=\"ltr\" data-no-translation-aria-label=\"\">\n\t\t\t<div class=\"elementor-image-carousel swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 4\" data-no-translation-aria-label=\"\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/shop.mauricedaamen.nl\/wp-content\/uploads\/2024\/09\/michelin_box_1_2x2-300x225.webp\" alt=\"michelin_box_1_2x2\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 4\" data-no-translation-aria-label=\"\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/shop.mauricedaamen.nl\/wp-content\/uploads\/2024\/09\/michelin_box_2_2x2-300x225.webp\" alt=\"michelin_box_2_2x2\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 4\" data-no-translation-aria-label=\"\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/shop.mauricedaamen.nl\/wp-content\/uploads\/2024\/09\/michelin_box_3_2x2-300x225.webp\" alt=\"michelin_box_3_2x2\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 of 4\" data-no-translation-aria-label=\"\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/shop.mauricedaamen.nl\/wp-content\/uploads\/2024\/09\/michelin_box_4_2x2-300x225.webp\" alt=\"michelin_box_4_2x2\" \/><\/figure><\/div>\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\">\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-left\" viewbox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"><\/path><\/svg>\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\">\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-right\" viewbox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"><\/path><\/svg>\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1d9e367 elementor-widget elementor-widget-heading\" data-id=\"1d9e367\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Michelin box<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5432be9 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"5432be9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7563eee e-flex e-con-boxed e-con e-child\" data-id=\"7563eee\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-aec6a58 elementor-widget elementor-widget-text-editor\" data-id=\"aec6a58\" data-element_type=\"widget\" data-e-type=\"widget\" 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 style=\"text-align: center;\">Voor de uitreiking van de Michelinsterren in 2024, mocht ik 4 unieke bonbons bedenken en maken.<\/p><p style=\"text-align: center;\">De uitdaging was om 4 bijzondere smaaksensaties te cre\u00ebren. De lat lag immers hoog.<\/p><p style=\"text-align: center;\">De uitkomst is gelukt!<\/p><p style=\"text-align: center;\">Smaken als sudachi, pandan, gecondenseerde cocos met passie en soja-kalamansie maken van deze bonbons een ware smaaksensatie.<\/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\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a58efd5 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"a58efd5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c173ad5 e-con-full e-flex e-con e-child\" data-id=\"c173ad5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-e58ff99 e-con-full e-flex e-con e-child\" data-id=\"e58ff99\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b6ac4c1 elementor-widget__width-inherit elementor-widget elementor-widget-html\" data-id=\"b6ac4c1\" 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<div class=\"node-container\" data-node-id=\"1\">\n    <!-- Product 1 -->\n    <div class=\"custom-product-container\" data-product-id=\"2479\">\n        <div class=\"product-header\">\n           <span class=\"price-per-unit\"><\/span>\n            <h3 class=\"product-name\"><\/h3>\n        <\/div>\n        <div class=\"product-controls\">\n    <select class=\"product-quantity\">\n        <option value=\"0\">0<\/option>\n        <option value=\"1\">1<\/option>\n        <option value=\"2\">2<\/option>\n        <option value=\"3\">3<\/option>\n        <option value=\"4\">4<\/option>\n        <option value=\"5\">5<\/option>\n        <option value=\"6\">6<\/option>\n        <option value=\"7\">7<\/option>\n        <option value=\"8\">8<\/option>\n        <option value=\"9\">9<\/option>\n        <option value=\"10\">10<\/option>\n        <option value=\"11\">11<\/option>\n        <option value=\"12\">12<\/option>\n        <!-- Voeg meer opties toe naar wens -->\n            <\/select>        \n            <div class=\"product-total-price\">\n                Totaal: <span class=\"total-price-value\">\u20ac0,00<\/span>\n            <\/div>\n        <\/div>\n    <\/div> \n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e242ccb e-flex e-con-boxed e-con e-parent\" data-id=\"e242ccb\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-2b78591 e-con-full e-flex e-con e-child\" data-id=\"2b78591\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;sticky&quot;:&quot;bottom&quot;,&quot;sticky_on&quot;:[&quot;mobile&quot;],&quot;sticky_offset&quot;:0,&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a4fd0c7 elementor-widget elementor-widget-html\" data-id=\"a4fd0c7\" 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<div class=\"custom-buttons-container node-container\" data-node-id=\"1\">\n    <!-- Product 1 -->\n    <div class=\"total-price-container\">\n        <!-- Totaalprijs voor deze node -->\n        <div class=\"overall-total-price\">\n            Totaal bedrag: <span class=\"total-price-value\">\u20ac0,00<\/span>\n        <\/div>\n        <!-- Knoppen -->\n        <div class=\"node-buttons\">\n            <button class=\"custom-add-to-cart-button-pc\">Toevoegen<\/button>\n            <button class=\"go-to-checkout-button-pc\">Afrekenen<\/button>\n        <\/div>\n    <\/div>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>Michelin box Voor de uitreiking van de Michelinsterren in 2024, mocht ik 4 unieke bonbons bedenken en maken. De uitdaging was om 4 bijzondere smaaksensaties te cre\u00ebren. De lat lag immers hoog. De uitkomst is gelukt! Smaken als sudachi, pandan, gecondenseerde cocos met passie en soja-kalamansie maken van deze bonbons een ware smaaksensatie. 0123456789101112 Totaal: [&hellip;]<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_seopress_robots_primary_cat":"","_seopress_titles_title":"","_seopress_titles_desc":"","_seopress_robots_index":"","site-sidebar-layout":"no-sidebar","site-content-layout":"","ast-site-content-layout":"full-width-container","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-2472","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/shop.mauricedaamen.nl\/en\/wp-json\/wp\/v2\/pages\/2472","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/shop.mauricedaamen.nl\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/shop.mauricedaamen.nl\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/shop.mauricedaamen.nl\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/shop.mauricedaamen.nl\/en\/wp-json\/wp\/v2\/comments?post=2472"}],"version-history":[{"count":0,"href":"https:\/\/shop.mauricedaamen.nl\/en\/wp-json\/wp\/v2\/pages\/2472\/revisions"}],"wp:attachment":[{"href":"https:\/\/shop.mauricedaamen.nl\/en\/wp-json\/wp\/v2\/media?parent=2472"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}