Hello. Thank you for contacting the Toolset support.
I checked on your install and I can see you are using the following view:
=> hidden link
And when I change the filter I can see it throw the JS error:
Uncaught TypeError: jQuery(...).slick is not a function
And I can see that JS code is added to your view's JS box:
jQuery( document ).on( 'js_event_wpv_pagination_completed js_event_wpv_parametric_search_results_updated', function( event, data ) {
jQuery('.imgSlider').slick({
autoplay: true,
autoplaySpeed: jQuery('.imgSlider').attr('data-speed'),
fade: true,
});
if(jQuery('.imgSlider').attr('data-hidecontrol') == 1){
jQuery('.imgSlider .slick-arrow').hide();
}
jQuery('.testimonialSlider').addClass('style'+jQuery('.testimonialSlider').attr('data-t_style'));
if(jQuery('.testimonialSlider').attr('data-t_style') != 3){
jQuery('.testimonialSlider').slick({
dots: true,
autoplay: true,
autoplaySpeed: jQuery('.testimonialSlider').attr('data-t_speed'),
slidesToShow: jQuery('.testimonialSlider').attr('data-t_show'),
slidesToScroll: 1,
responsive: [{
breakpoint: 900,
settings: {
slidesToShow: 2,
}
}, {
breakpoint: 600,
settings: {
slidesToShow: 1,
}
}]
});
if(jQuery('.testimonialSlider').attr('data-t_show') > 1){
jQuery('.testimonial').addClass('border');
}
if(jQuery('.testimonialSlider').attr('data-t_hidecontrol') == 1){
jQuery('.testimonialSlider .slick-arrow').hide();
jQuery('.testimonialSlider .slick-dots').hide();
}
}
jQuery('.logoSlider').addClass('style'+jQuery('.logoSlider').attr('data-l_style'));
if(jQuery('.logoSlider').attr('data-l_style') != '2'){
jQuery('.logoSlider').slick({
dots: true,
autoplay: true,
autoplaySpeed: jQuery('.logoSlider').attr('data-speed'),
slidesToShow: jQuery('.logoSlider').attr('data-l_show'),
slidesToScroll: 1,
responsive: [{
breakpoint: 1024,
settings: {
slidesToShow: 4,
}
}, {
breakpoint: 600,
settings: {
slidesToShow: 2,
}
}, {
breakpoint: 400,
settings: {
slidesToShow: 1,
}
}]
});
if(jQuery('.logoSlider').attr('data-hidecontrol') == 1){
jQuery('.logoSlider .slick-arrow').hide();
jQuery('.logoSlider .slick-dots').hide();
}
}
});
As soon as I remove the above custom JS from the JS box and save the view and check on frontend it updates the URL as expected so you will have to adjust the custom JS code you added.