{"id":591,"date":"2025-04-30T18:26:06","date_gmt":"2025-04-30T18:26:06","guid":{"rendered":"https:\/\/huizengezond.nl\/HG\/index.php\/events\/"},"modified":"2025-05-07T21:21:50","modified_gmt":"2025-05-07T21:21:50","slug":"bijeenkomsten","status":"publish","type":"page","link":"https:\/\/www.huizengezond.nl\/index.php\/bijeenkomsten\/","title":{"rendered":"Bijeenkomsten"},"content":{"rendered":"\n<div class=\"wp-block-columns has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\" style=\"background:linear-gradient(135deg,rgb(235,255,233) 0%,rgb(167,189,169) 100%)\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:4%\"><\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:80%\">                <div class='mage list_with_filter_section mep_event_list' id='mage-container'>\n\t\t\t\t\tThere are currently no events scheduled.                <\/div>\n                <script>\n                    jQuery(document).ready(function () {\n                        var containerEl = document.querySelector('#mep_event_list_abr69e219a9649a3');\n                        var mixer = mixitup(containerEl, {\n                            selectors: {\n                                target: '.mep-event-list-loop',\n                                control: '[data-mixitup-control]'\n                            }\n                        });\n                        \/\/ Handle title filter input\n                        jQuery('input[name=\"filter_with_title\"]').on('keyup', function () {\n                            var searchText = jQuery(this).val().toLowerCase();\n                            var items = jQuery('.mep-event-list-loop');\n                            items.each(function () {\n                                var itemTitle = jQuery(this).data('title').toLowerCase();\n                                if (itemTitle.indexOf(searchText) > -1) {\n                                    jQuery(this).show();\n                                } else {\n                                    jQuery(this).hide();\n                                }\n                            });\n                        });\n                        \/\/ Handle date filter change\n                        jQuery('input[name=\"filter_with_date\"]').on('change', function () {\n                            var selectedDate = jQuery(this).val();\n                            var items = jQuery('.mep-event-list-loop');\n                            if (!selectedDate) {\n                                items.show();\n                            } else {\n                                var filterDate = new Date(selectedDate);\n                                filterDate.setHours(0, 0, 0, 0); \/\/ Reset time part for date comparison\n                                items.each(function () {\n                                    var itemDate = new Date(jQuery(this).data('date'));\n                                    itemDate.setHours(0, 0, 0, 0); \/\/ Reset time part for date comparison\n                                    if (itemDate.getTime() === filterDate.getTime()) {\n                                        jQuery(this).show();\n                                    } else {\n                                        jQuery(this).hide();\n                                    }\n                                });\n                            }\n                        });\n                        \/\/ Handle state filter change\n                        jQuery('select[name=\"filter_with_state\"]').on('change', function () {\n                            var state = jQuery(this).val();\n                            var items = jQuery('.mep-event-list-loop');\n                            if (state === '') {\n                                items.show();\n                            } else {\n                                items.each(function () {\n                                    var itemState = jQuery(this).data('state');\n                                    if (itemState === state) {\n                                        jQuery(this).show();\n                                    } else {\n                                        jQuery(this).hide();\n                                    }\n                                });\n                            }\n                        });\n                        \/\/ Handle city filter change\n                        jQuery('select[name=\"filter_with_city\"]').on('change', function () {\n                            applyAllFilters();\n                        });\n                        \/\/ Handle category filter change\n                        jQuery('select[name=\"filter_with_category\"]').on('change', function () {\n                            applyAllFilters();\n                        });\n                        \/\/ Handle organizer filter change\n                        jQuery('select[name=\"filter_with_organizer\"]').on('change', function () {\n                            applyAllFilters();\n                        });\n                        \/\/ Combined filter function that applies all filters\n                        function applyAllFilters() {\n                            var titleFilter = jQuery('input[name=\"filter_with_title\"]').val().toLowerCase();\n                            var dateFilter = jQuery('input[name=\"filter_with_date\"]').val();\n                            var stateFilter = jQuery('select[name=\"filter_with_state\"]').val();\n                            var cityFilter = jQuery('select[name=\"filter_with_city\"]').val();\n                            var categoryFilter = jQuery('select[name=\"filter_with_category\"]').val();\n                            var organizerFilter = jQuery('select[name=\"filter_with_organizer\"]').val();\n                            var visibleCount = 0;\n                            jQuery('.mep-event-list-loop').each(function () {\n                                var $item = jQuery(this);\n                                var show = true;\n                                \/\/ Title filter\n                                if (titleFilter) {\n                                    var itemTitle = ($item.data('title') || '').toLowerCase();\n                                    if (itemTitle.indexOf(titleFilter) === -1) {\n                                        show = false;\n                                    }\n                                }\n                                \/\/ Date filter\n                                if (show && dateFilter) {\n                                    var itemDate = $item.data('date');\n                                    if (itemDate) {\n                                        var filterDate = new Date(dateFilter);\n                                        filterDate.setHours(0, 0, 0, 0);\n                                        var itemDateObj = new Date(itemDate);\n                                        itemDateObj.setHours(0, 0, 0, 0);\n                                        if (itemDateObj.getTime() !== filterDate.getTime()) {\n                                            show = false;\n                                        }\n                                    } else {\n                                        show = false;\n                                    }\n                                }\n                                \/\/ State filter\n                                if (show && stateFilter) {\n                                    var itemState = $item.data('state') || '';\n                                    if (itemState !== stateFilter) {\n                                        show = false;\n                                    }\n                                }\n                                \/\/ City filter\n                                if (show && cityFilter) {\n                                    var itemCity = $item.data('city-name') || '';\n                                    if (itemCity !== cityFilter) {\n                                        show = false;\n                                    }\n                                }\n                                \/\/ Category filter\n                                if (show && categoryFilter) {\n                                    var itemCategory = $item.data('category') || '';\n                                    \/\/ Check if category matches (can be comma-separated)\n                                    var itemCategories = itemCategory.split(',').map(function (c) {\n                                        return c.trim();\n                                    });\n                                    if (itemCategories.indexOf(categoryFilter) === -1) {\n                                        show = false;\n                                    }\n                                }\n                                \/\/ Organizer filter\n                                if (show && organizerFilter) {\n                                    var itemOrganizer = $item.data('organizer') || '';\n                                    \/\/ Check if organizer matches (can be comma-separated)\n                                    var itemOrganizers = itemOrganizer.split(',').map(function (o) {\n                                        return o.trim();\n                                    });\n                                    if (itemOrganizers.indexOf(organizerFilter) === -1) {\n                                        show = false;\n                                    }\n                                }\n                                if (show) {\n                                    $item.show();\n                                    visibleCount++;\n                                } else {\n                                    $item.hide();\n                                }\n                            });\n                            \/\/ Update count display\n                            jQuery('.qty_count').text(visibleCount);\n                        }\n                        \/\/ Update title filter to use combined function\n                        jQuery('input[name=\"filter_with_title\"]').off('keyup').on('keyup', function () {\n                            applyAllFilters();\n                        });\n                        \/\/ Update date filter to use combined function\n                        jQuery('input[name=\"filter_with_date\"]').off('change').on('change', function () {\n                            applyAllFilters();\n                        });\n                        \/\/ Update state filter to use combined function\n                        jQuery('select[name=\"filter_with_state\"]').off('change').on('change', function () {\n                            applyAllFilters();\n                        });\n\t\t\t\t\t\t                    });\n                <\/script>\n                <\/div>\n\n\n\n<div class=\"wp-block-column has-background is-layout-flow wp-block-column-is-layout-flow\" style=\"background:linear-gradient(135deg,rgb(224,238,224) 0%,rgb(194,229,198) 100%);flex-basis:16%\">\n<div class=\"wp-block-query is-layout-flow wp-block-query-is-layout-flow\"><ul class=\"wp-block-post-template is-layout-flow wp-block-post-template-is-layout-flow\"><li class=\"wp-block-post post-1463 post type-post status-publish format-standard hentry category-beoordelen\">\n\n<hr class=\"wp-block-separator has-text-color has-alpha-channel-opacity has-background\" style=\"background-color:#264c2d;color:#264c2d\"\/>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:1%\"><\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:98%\">\n\n<div class=\"wp-block-post-date has-small-font-size\"><time datetime=\"2025-12-08T20:44:19+01:00\">8 dec<\/time><\/div>\n\n<h6 class=\"wp-block-post-title\"><a href=\"https:\/\/www.huizengezond.nl\/index.php\/2025\/12\/08\/sprouts\/\" target=\"_self\" >Sprouts<\/a><\/h6><\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:1%\"><\/div>\n<\/div>\n\n<\/li><li class=\"wp-block-post post-1306 post type-post status-publish format-standard has-post-thumbnail hentry category-welzijn\">\n\n<hr class=\"wp-block-separator has-text-color has-alpha-channel-opacity has-background\" style=\"background-color:#264c2d;color:#264c2d\"\/>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:1%\"><\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:98%\"><figure class=\"wp-block-post-featured-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1280\" height=\"960\" src=\"https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/07\/IMG_1138.jpeg\" class=\"attachment-post-thumbnail size-post-thumbnail wp-post-image\" alt=\"\" style=\"object-fit:cover;\" srcset=\"https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/07\/IMG_1138.jpeg 1280w, https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/07\/IMG_1138-300x225.jpeg 300w, https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/07\/IMG_1138-1024x768.jpeg 1024w, https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/07\/IMG_1138-768x576.jpeg 768w, https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/07\/IMG_1138-600x450.jpeg 600w\" sizes=\"auto, (max-width: 1280px) 100vw, 1280px\" \/><\/figure>\n\n<div class=\"wp-block-post-date has-small-font-size\"><time datetime=\"2025-07-03T20:27:23+02:00\">3 jul<\/time><\/div>\n\n<h6 class=\"wp-block-post-title\"><a href=\"https:\/\/www.huizengezond.nl\/index.php\/2025\/07\/03\/marma-therapie\/\" target=\"_self\" >Marma-therapie<\/a><\/h6><\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:1%\"><\/div>\n<\/div>\n\n<\/li><li class=\"wp-block-post post-1294 post type-post status-publish format-standard has-post-thumbnail hentry category-omgeving\">\n\n<hr class=\"wp-block-separator has-text-color has-alpha-channel-opacity has-background\" style=\"background-color:#264c2d;color:#264c2d\"\/>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:1%\"><\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:98%\"><figure class=\"wp-block-post-featured-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1900\" height=\"1478\" src=\"https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/06\/De-Verbouwing-Huizen-2024.jpg\" class=\"attachment-post-thumbnail size-post-thumbnail wp-post-image\" alt=\"\" style=\"object-fit:cover;\" srcset=\"https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/06\/De-Verbouwing-Huizen-2024.jpg 1900w, https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/06\/De-Verbouwing-Huizen-2024-300x233.jpg 300w, https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/06\/De-Verbouwing-Huizen-2024-1024x797.jpg 1024w, https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/06\/De-Verbouwing-Huizen-2024-768x597.jpg 768w, https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/06\/De-Verbouwing-Huizen-2024-1536x1195.jpg 1536w, https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/06\/De-Verbouwing-Huizen-2024-600x467.jpg 600w\" sizes=\"auto, (max-width: 1900px) 100vw, 1900px\" \/><\/figure>\n\n<div class=\"wp-block-post-date has-small-font-size\"><time datetime=\"2025-06-22T16:11:55+02:00\">22 jun<\/time><\/div>\n\n<h6 class=\"wp-block-post-title\"><a href=\"https:\/\/www.huizengezond.nl\/index.php\/2025\/06\/22\/de-grote-verbouwing\/\" target=\"_self\" >De grote verbouwing<\/a><\/h6><\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:1%\"><\/div>\n<\/div>\n\n<\/li><li class=\"wp-block-post post-1174 post type-post status-publish format-standard has-post-thumbnail hentry category-omgeving\">\n\n<hr class=\"wp-block-separator has-text-color has-alpha-channel-opacity has-background\" style=\"background-color:#264c2d;color:#264c2d\"\/>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:1%\"><\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:98%\"><figure class=\"wp-block-post-featured-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1221\" height=\"950\" src=\"https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/05\/Elektrohypersensitiviteit.jpg\" class=\"attachment-post-thumbnail size-post-thumbnail wp-post-image\" alt=\"\" style=\"object-fit:cover;\" srcset=\"https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/05\/Elektrohypersensitiviteit.jpg 1221w, https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/05\/Elektrohypersensitiviteit-300x233.jpg 300w, https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/05\/Elektrohypersensitiviteit-1024x797.jpg 1024w, https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/05\/Elektrohypersensitiviteit-768x598.jpg 768w, https:\/\/www.huizengezond.nl\/wp-content\/uploads\/2025\/05\/Elektrohypersensitiviteit-600x467.jpg 600w\" sizes=\"auto, (max-width: 1221px) 100vw, 1221px\" \/><\/figure>\n\n<div class=\"wp-block-post-date has-small-font-size\"><time datetime=\"2025-05-18T14:27:53+02:00\">18 mei<\/time><\/div>\n\n<h6 class=\"wp-block-post-title\"><a href=\"https:\/\/www.huizengezond.nl\/index.php\/2025\/05\/18\/deze-moet-zo-online\/\" target=\"_self\" >Elektrohypersensitiviteit<\/a><\/h6><\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:1%\"><\/div>\n<\/div>\n\n<\/li><\/ul>\n\n<nav class=\"wp-block-query-pagination is-layout-flex wp-block-query-pagination-is-layout-flex\" aria-label=\"Paginering\">\n\n\n<div class=\"wp-block-query-pagination-numbers\"><span aria-label=\"Pagina 1\" aria-current=\"page\" class=\"page-numbers current\">1<\/span>\n<a aria-label=\"Pagina 2\" class=\"page-numbers\" href=\"?query-15-page=2\">2<\/a>\n<a aria-label=\"Pagina 3\" class=\"page-numbers\" href=\"?query-15-page=3\">3<\/a>\n<a aria-label=\"Pagina 4\" class=\"page-numbers\" href=\"?query-15-page=4\">4<\/a><\/div>\n\n<a href=\"\/index.php\/wp-json\/wp\/v2\/pages\/591?query-15-page=2\" class=\"wp-block-query-pagination-next\">Volgende pagina<\/a>\n<\/nav>\n\n<\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>CONTENTS<\/p>\n","protected":false},"author":2,"featured_media":616,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-templates\/pagebuilder.php","meta":{"footnotes":""},"class_list":["post-591","page","type-page","status-publish","has-post-thumbnail","hentry"],"_links":{"self":[{"href":"https:\/\/www.huizengezond.nl\/index.php\/wp-json\/wp\/v2\/pages\/591","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.huizengezond.nl\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.huizengezond.nl\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.huizengezond.nl\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.huizengezond.nl\/index.php\/wp-json\/wp\/v2\/comments?post=591"}],"version-history":[{"count":14,"href":"https:\/\/www.huizengezond.nl\/index.php\/wp-json\/wp\/v2\/pages\/591\/revisions"}],"predecessor-version":[{"id":1094,"href":"https:\/\/www.huizengezond.nl\/index.php\/wp-json\/wp\/v2\/pages\/591\/revisions\/1094"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.huizengezond.nl\/index.php\/wp-json\/wp\/v2\/media\/616"}],"wp:attachment":[{"href":"https:\/\/www.huizengezond.nl\/index.php\/wp-json\/wp\/v2\/media?parent=591"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}