I solved the problem by using the child theme and adding this in custom CSS:
.sh-filter-item:nth-of-type(1){ display:none; }
And this in custom JS:
jQuery(document).ready(function ($) {
“use strict”;
$(‘.sh-filter .sh-filter-item:nth-child(2)’).trigger(‘click’);
});
I understand, thank you for this clarification and recommendation.