Hello,
I’m currently using the Dawn theme and encountering a problem with the sorting functionality. When I click on any of the sorting options, the images become disabled. Everything else appears to be functioning correctly, except for the images. The problem seems to stem from the ‘slick’ class not being generated, which is causing the image issue. I’ve attempted to address this by adding the following code, but it only seems to work on Linux systems and not on Windows and macOS
document.addEventListener('DOMContentLoaded', function(){
$(document).on('click','#FacetSortForm .facet-filters__sort.select__select', function(){
setTimeout(function(){window.location.reload();},1000);
});
}, false);
Can anyone help on this ?