Choosing a selection results in a full page refresh.
Opens in a new window.
document.addEventListener('DOMContentLoaded', function() {
// Function to consolidate items and fix pagination
function fixPagination() {
const grid = document.querySelector('.collection-grid__wrapper .grid, .collection .grid--view-items');
const visibleItems = Array.from(grid.querySelectorAll('.grid__item')).filter(item =>
!item.querySelector('.price--sold-out') &&
window.getComputedStyle(item).display !== 'none'
);
// If there are visible items but less than expected per page
if (visibleItems.length > 0) {
const itemsPerPage = window.innerWidth >= 750 ? 12 : 8; // Adjust these numbers based on your preferred items per page
const currentPage = new URLSearchParams(window.location.search).get('page') || 1;
const totalPages = Math.ceil(visibleItems.length / itemsPerPage);
// If current page is empty or has too few items
if (currentPage > totalPages) {
// Redirect to the last valid page
window.location.href = window.location.pathname + (totalPages > 1 ? '?page=' + totalPages : '');
}
}
}
// Run on page load
fixPagination();
// Run on window resize
let resizeTimer;
window.addEventListener('resize', function() {
clearTimeout(resizeTimer);
resizeTimer = setTimeout(fixPagination, 250);
});
});