Frequently Asked Question

An attack of the ague sent him home, and on recovery, having resolved to attend a high school and fit himself to become a teacher, he passed the next four years in a hard struggle with poverty and in an earnest effort to secure an education, studying for a short time in the Geauga Seminary atChester, Ohio.
An attack of the ague sent him home, and on recovery, having resolved to attend a high school and fit himself to become a teacher, he passed the next four years in a hard struggle with poverty and in an earnest effort to secure an education, studying for a short time in the Geauga Seminary atChester, Ohio.
An attack of the ague sent him home, and on recovery, having resolved to attend a high school and fit himself to become a teacher, he passed the next four years in a hard struggle with poverty and in an earnest effort to secure an education, studying for a short time in the Geauga Seminary atChester, Ohio.
An attack of the ague sent him home, and on recovery, having resolved to attend a high school and fit himself to become a teacher, he passed the next four years in a hard struggle with poverty and in an earnest effort to secure an education, studying for a short time in the Geauga Seminary atChester, Ohio.
An attack of the ague sent him home, and on recovery, having resolved to attend a high school and fit himself to become a teacher, he passed the next four years in a hard struggle with poverty and in an earnest effort to secure an education, studying for a short time in the Geauga Seminary atChester, Ohio.

Subscribe our Newsletter & Get every updates.

if (typeof jQuery === 'undefined') { console.error('jQuery is not loaded'); } else { console.log('jQuery is loaded, version: ' + jQuery.fn.jquery); } jQuery(document).ready(function($) { console.log('Skrypt filtrowania rozpoczęty'); // Wyświetl przyciski w konsoli console.log('Znalezione przyciski filtrowania:', $('.filter-button').length); // Prostsze podejście - użyj konkretnych klas z motywu $('.filter-button').on('click', function(e) { e.preventDefault(); console.log('Kliknięto przycisk:', $(this).text()); // Pobierz wartość filtra z atrybutu data-filter var filter = $(this).data('filter'); console.log('Filtrowanie według:', filter); // Usuń aktywną klasę ze wszystkich przycisków $('.filter-button').removeClass('active'); // Dodaj aktywną klasę do klikniętego przycisku $(this).addClass('active'); // Proste filtrowanie - użyjmy klas, które na pewno istnieją if (filter === 'all') { // Pokaż wszystkie posty $('.post-item, article, .elementor-post').show(); } else { // Ukryj wszystkie posty $('.post-item, article, .elementor-post').hide(); // Pokaż tylko posty z odpowiednim rokiem $('[data-year="' + filter + '"]').show(); } }); // Dodaj atrybuty data-year do postów $('.post-item, article, .elementor-post').each(function() { var postDate = $(this).find('.post-date, .elementor-post-date, time').text(); console.log('Znaleziona data posta:', postDate); // Wyszukaj rok w tekście daty var yearMatch = postDate.match(/b(2019|2020|2021|2022|2023|2024|2025)b/); if (yearMatch) { var year = yearMatch[0]; console.log('Znaleziony rok:', year); $(this).attr('data-year', year); } else { console.log('Nie znaleziono roku dla:', postDate); } }); console.log('Skrypt filtrowania zakończony'); });