Filter toggle on click

$('<p>Zobrazit odrůdy »</p>').insertAfter('.filter-section-parametric-id-35 h4');

 

$('.filter-section-parametric-id-35 form').hide();

 

$('.filter-section-parametric-id-35 h4 + p').click(function() {
$(this).text(function(i, text){
return text === "Skrýt odrůdy »" ? "Zobrazit odrůdy »" : "Skrýt odrůdy »";
})
$('.filter-section-parametric-id-35 form').toggle();
});