• Man so easy to use. Activate. Tick. Tick. And BANG! Indeed beautiful taxonomy filters on your website. Wouldn’t mind having an option to dynamically update the posts when selecting the taxonomies instead of hitting the ‘apply’ button.

    ??

Viewing 1 replies (of 1 total)
  • Plugin Author Jonathandejong

    (@jonathandejong)

    Thank you Erwin for those kind words. There are plans for dynamic (AJAXified) updating of the posts list but it will require a bit more knowhow to get it running on your site. It will probably include adding your own template for a single post item in a btf folder in the active theme.

    If you’re referring to the ability to have the filter submit itself automatically when you choose a term you can easily achieve that with a bit of JS. Altho it’s usually not a desired behaviour as it kind of hinders the ability to choose multiple taxonomies before filtering (you’d have to choose one and then wait for the reload to choose the next). Here’s how it can be done:

    
    $('.beautiful-taxonomy-filters-select').change(function(){
    	$('this').closest('form').submit();
    });
    

    Couple it with hiding the apply button for a “seamless” experience:

    
    .beautiful-taxonomy-filters-button{ display: none; }
    
Viewing 1 replies (of 1 total)
  • The topic ‘Sooo easy to use’ is closed to new replies.