Allready fixed my second question, I did it with an 3rd Party JS-Editor. The code:
jQuery(document).ready(function () {
jQuery(<code>.vp-filter__item:nth-child(1) a</code>).hide();
});
jQuery(document).ready(function () {
jQuery(<code>.vp-filter__item:nth-child(2) a</code>).trigger("click");
});
I got another question, hope you can help me.
I want the “All” Category not been shown, so I did this in custom css:
.vp-filter .vp-filter__item:first-of-type {
display: none;
}
And it works! But how can I make that my second Category is activated automatically?
Thanks,
Kilian