{"id":2452,"date":"2024-09-23T12:05:56","date_gmt":"2024-09-23T12:05:56","guid":{"rendered":"https:\/\/shop.mauricedaamen.nl\/?page_id=2452"},"modified":"2024-09-23T16:20:04","modified_gmt":"2024-09-23T16:20:04","slug":"samenwerking","status":"publish","type":"page","link":"https:\/\/shop.mauricedaamen.nl\/en\/samenwerking\/","title":{"rendered":"Samenwerking"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"2452\" class=\"elementor elementor-2452\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-026618d e-flex e-con-boxed e-con e-parent\" data-id=\"026618d\" 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-d4269da elementor-widget elementor-widget-spacer\" data-id=\"d4269da\" 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-3f9d5c5 elementor-widget elementor-widget-html\" data-id=\"3f9d5c5\" 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\": [1974],\n        \"2\": [1832]\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-2ab027b e-flex e-con-boxed e-con e-parent\" data-id=\"2ab027b\" 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-b93c509 e-con-full elementor-hidden-mobile elementor-hidden-tablet e-flex e-con e-child\" data-id=\"b93c509\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b1cf91b e-con-full e-flex e-con e-child\" data-id=\"b1cf91b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-470a905 e-con-full e-flex e-con e-child\" data-id=\"470a905\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2d14291 e-flex e-con-boxed e-con e-child\" data-id=\"2d14291\" 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-1ee52ad elementor-widget elementor-widget-image\" data-id=\"1ee52ad\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/shop.mauricedaamen.nl\/wp-content\/uploads\/elementor\/thumbs\/brainport_box_3x3-scaled-quayf9jchqtf1bmq4mefmo45sn17s4hd0ypof5a5ok.webp\" title=\"brainport_box_3x3\" alt=\"brainport_box_3x3\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a736a75 elementor-widget elementor-widget-heading\" data-id=\"a736a75\" 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\">Brainport Bonbons<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0e27076 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"0e27076\" 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-a11ca34 e-flex e-con-boxed e-con e-child\" data-id=\"a11ca34\" 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-defc223 elementor-widget elementor-widget-text-editor\" data-id=\"defc223\" 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;\">Een portbonbon voor levensgenieters en pioniers. Deze bonbon is gemaakt voor liefhebbers van het goede leven en innovatie. The\u00a0\u00a0\u00a0\u00a0 Brainport bonbon bestaat uit 2 texturen van de bekende Brainport-port. Geniet met vrienden of familie van deze bijzondere portbonbons na een sfeervol diner of gewoon als heerlijke verwennerij. Tevens is deze doos te combineren met een prachtige stijlvolle fles Brainport. Neem hiervoor contact met ons op om de mogelijkheden te bespreken.<\/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-d981b2b elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"d981b2b\" 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-28150a7 e-con-full e-flex e-con e-child\" data-id=\"28150a7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2277e39 e-con-full e-flex e-con e-child\" data-id=\"2277e39\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bb5581a elementor-widget__width-inherit elementor-widget elementor-widget-html\" data-id=\"bb5581a\" 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 2 -->\n    <div class=\"custom-product-container\" data-product-id=\"1832\">\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<\/div>\n\t\t<div class=\"elementor-element elementor-element-d0f0b93 e-con-full e-flex e-con e-child\" data-id=\"d0f0b93\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2c1318c e-con-full e-flex e-con e-child\" data-id=\"2c1318c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8324cfb e-con-full e-flex e-con e-child\" data-id=\"8324cfb\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f756d07 elementor-widget elementor-widget-image\" data-id=\"f756d07\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/shop.mauricedaamen.nl\/wp-content\/uploads\/elementor\/thumbs\/restaurant_olijf_2x2-scaled-quayg8bdim50yw87hjfmoxc7rw9soxbfhqun6dulac.webp\" title=\"restaurant_olijf_2x2\" alt=\"restaurant_olijf_2x2\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-912cef9 elementor-widget elementor-widget-heading\" data-id=\"912cef9\" 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\">Olijf bonbon<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-60483ba elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"60483ba\" 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-83db1bd e-flex e-con-boxed e-con e-child\" data-id=\"83db1bd\" 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-46a33ec elementor-widget elementor-widget-text-editor\" data-id=\"46a33ec\" 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 dit prachtige restaurant in Nuenen maak ik maar liefst 4 unieke bonbons.<\/p><p style=\"text-align: center;\">Olijf-za\u2019atar, chruncy pecan, dragon-vadouvan en soja-kalamsie. Een leuk cadeautje om te krijgen en te geven.<\/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-d8ebea4 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"d8ebea4\" 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-bd6b5cb e-con-full e-flex e-con e-child\" data-id=\"bd6b5cb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-091cb3e e-con-full e-flex e-con e-child\" data-id=\"091cb3e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-eb2bd24 elementor-widget__width-inherit elementor-widget elementor-widget-html\" data-id=\"eb2bd24\" 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 2 -->\n    <div class=\"custom-product-container\" data-product-id=\"1974\">\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<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-10a3bc0 e-con-full elementor-hidden-mobile elementor-hidden-tablet e-flex e-con e-child\" data-id=\"10a3bc0\" data-element_type=\"container\" data-e-type=\"container\">\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-361750d e-flex e-con-boxed e-con e-parent\" data-id=\"361750d\" 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-d94681f e-con-full e-flex e-con e-child\" data-id=\"d94681f\" 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-4e35dd2 elementor-widget elementor-widget-html\" data-id=\"4e35dd2\" 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>Brainport Bonbons Een portbonbon voor levensgenieters en pioniers. Deze bonbon is gemaakt voor liefhebbers van het goede leven en innovatie. The\u00a0\u00a0\u00a0\u00a0 Brainport bonbon bestaat uit 2 texturen van de bekende Brainport-port. Geniet met vrienden of familie van deze bijzondere portbonbons na een sfeervol diner of gewoon als heerlijke verwennerij. Tevens is deze doos te combineren [&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":"Samenwerking","_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-2452","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/shop.mauricedaamen.nl\/en\/wp-json\/wp\/v2\/pages\/2452","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=2452"}],"version-history":[{"count":0,"href":"https:\/\/shop.mauricedaamen.nl\/en\/wp-json\/wp\/v2\/pages\/2452\/revisions"}],"wp:attachment":[{"href":"https:\/\/shop.mauricedaamen.nl\/en\/wp-json\/wp\/v2\/media?parent=2452"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}