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
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>
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>