Page 1 of 1

i have a solution for everybody that have more filters and want to close all other opened filter tabs

Posted: 11 Jun 2022, 16:21
by erapaglia
i have a solution for everybody that have more filters and want to close all other filter tabs if one filter tab is opened

on template index.php insert this jquery script on the footer and the filter tabs are closed if you open a different filter tab

<script>
$(".panel-collapse").click(function() {

$(".panel-collapse.collapse").removeClass("show");

return false;
});

</script>

Re: i have a solution for everybody that have more filters and want to close all other opened filter tabs

Posted: 14 Jun 2022, 00:04
by Jan
Hi, thank you for your info.

Jan