Here is the jQuery solution. Just replace nth-child(number) by what you want in your case.
` jQuery(document).ready(function () {
jQuery(‘.vp-filter__item:nth-child(2) a’).trigger(“click”);
});`
-
This reply was modified 4 years, 2 months ago by alexis822.