{"id":24166,"date":"2017-12-08T14:07:34","date_gmt":"2017-12-08T13:07:34","guid":{"rendered":"https:\/\/asa-samfundet.se\/events-2\/"},"modified":"2026-01-20T12:10:16","modified_gmt":"2026-01-20T11:10:16","slug":"events-2","status":"publish","type":"page","link":"https:\/\/asa-samfundet.se\/en\/events-2\/","title":{"rendered":"Events"},"content":{"rendered":"\n<p><strong>We gather several times each year for bl\u00f3t, fellowship, and living tradition. Our events include holiday bl\u00f3ts, seasonal rites, various gatherings, and other assemblies where tradition, presence, and community stand at the center. <\/strong><\/p>\n\n<p>Here you will find information about our upcoming bl\u00f3ts and events \u2013 what we are observing, which bl\u00f3t kindred is hosting, as well as where and when we meet. Whether you are new or have walked this path for a long time, you are warmly welcome to take part and share the tradition with us. <\/p>\n                <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_abr6a5aefa8d548e');\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 startDateFilter = jQuery('input[name=\"filter_with_start_date\"]').val();\n                            var endDateFilter = jQuery('input[name=\"filter_with_end_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                                \/\/ Single Date filter (legacy)\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                                \/\/ Date Range filter\n                                if (show && (startDateFilter || endDateFilter)) {\n                                    var itemDate = $item.data('date');\n                                    if (itemDate) {\n                                        var itemDateObj = new Date(itemDate);\n                                        itemDateObj.setHours(0, 0, 0, 0);\n                                        if (startDateFilter) {\n                                            var startDate = new Date(startDateFilter);\n                                            startDate.setHours(0, 0, 0, 0);\n                                            if (itemDateObj < startDate) {\n                                                show = false;\n                                            }\n                                        }\n                                        if (endDateFilter) {\n                                            var endDate = new Date(endDateFilter);\n                                            endDate.setHours(0, 0, 0, 0);\n                                            if (itemDateObj > endDate) {\n                                                show = false;\n                                            }\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                                    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                                    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                            jQuery('.qty_count').text(visibleCount);\n                        }\n                        jQuery('input[name=\"filter_with_title\"]').off('keyup').on('keyup', function () {\n                            applyAllFilters();\n                        });\n                        jQuery('input[name=\"filter_with_date\"]').off('change').on('change', function () {\n                            applyAllFilters();\n                        });\n                        jQuery('input[name=\"filter_with_start_date\"]').off('change').on('change', function () {\n                            applyAllFilters();\n                        });\n                        jQuery('input[name=\"filter_with_end_date\"]').off('change').on('change', function () {\n                            applyAllFilters();\n                        });\n                        jQuery('select[name=\"filter_with_state\"]').off('change').on('change', function () {\n                            applyAllFilters();\n                        });\n                        jQuery('select[name=\"filter_with_city\"]').off('change').on('change', function () {\n                            applyAllFilters();\n                        });\n                        jQuery('select[name=\"filter_with_category\"]').off('change').on('change', function () {\n                            applyAllFilters();\n                        });\n                        jQuery('select[name=\"filter_with_organizer\"]').off('change').on('change', function () {\n                            applyAllFilters();\n                        });\n\t\t\t\t\t\t                    });\n                <\/script>\n                \n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n<p><strong>Contact information or if you wish to get involved<br\/>Email: info@asa-samfundet.se<br\/>Phone: +46 10 641 02 55<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>CONTENTS<\/p>\n","protected":false},"author":406,"featured_media":21058,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_uag_custom_page_level_css":"","ngg_post_thumbnail":0,"footnotes":""},"class_list":["post-24166","page","type-page","status-publish","has-post-thumbnail"],"uagb_featured_image_src":{"full":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",320,320,false],"thumbnail":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",150,150,false],"medium":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",300,300,false],"medium_large":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",320,320,false],"large":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",320,320,false],"1536x1536":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",320,320,false],"2048x2048":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",320,320,false],"td_0x420":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",320,320,false],"td_80x60":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",60,60,false],"td_218x150":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",150,150,false],"td_324x400":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",320,320,false],"td_696x0":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",320,320,false],"td_1068x0":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",320,320,false],"td_100x70":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",70,70,false],"td_265x198":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",198,198,false],"td_324x160":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",160,160,false],"td_324x235":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",235,235,false],"td_356x220":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",220,220,false],"td_356x364":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",320,320,false],"td_533x261":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",261,261,false],"td_534x462":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",320,320,false],"td_696x385":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",320,320,false],"td_741x486":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",320,320,false],"td_1068x580":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",320,320,false],"woocommerce_thumbnail":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo-300x300.png",300,300,true],"woocommerce_single":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo.png",320,320,false],"woocommerce_gallery_thumbnail":["https:\/\/asa-samfundet.se\/wp-content\/uploads\/2017\/02\/logo-300x300.png",100,100,true]},"uagb_author_info":{"display_name":"Frank Ottosson","author_link":"https:\/\/asa-samfundet.se\/en\/author\/knallen80\/"},"uagb_comment_info":0,"uagb_excerpt":"CONTENTS","_links":{"self":[{"href":"https:\/\/asa-samfundet.se\/en\/wp-json\/wp\/v2\/pages\/24166","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/asa-samfundet.se\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/asa-samfundet.se\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/asa-samfundet.se\/en\/wp-json\/wp\/v2\/users\/406"}],"replies":[{"embeddable":true,"href":"https:\/\/asa-samfundet.se\/en\/wp-json\/wp\/v2\/comments?post=24166"}],"version-history":[{"count":0,"href":"https:\/\/asa-samfundet.se\/en\/wp-json\/wp\/v2\/pages\/24166\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/asa-samfundet.se\/en\/wp-json\/wp\/v2\/media\/21058"}],"wp:attachment":[{"href":"https:\/\/asa-samfundet.se\/en\/wp-json\/wp\/v2\/media?parent=24166"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}