I’m using WooCommerce Layered Nav to create buttons on this page. I’ve been asked to make them toggle buttons (not switches/slides).
Currently you can select as many of these as you like (they’re being treated like checkboxes) to filter based upon the product’s attribute, but I need them to only be like ‘radio’ buttons I guess. Is it simple to just add a classification and then add this jQuery to treat them as toggles:
$('.taxfil li').toggle();
or is it a little more to it than that?