Update WooCommerce Products Filter v.2.2.3
- new extension TURBO MODE
- new option search by description in variations
- new option possible to show terms titles for type images
- new option in tab Design for tooltips which add possibility to disable it if any scripts conflicts on the site front
- updated option in tab Advanced to enable OR disable the plugin on the pages
- new filter by meta for calendar data in unix format, but also using hook woof_meta_data_datapicker it is possible to adapt(convert) filtered data using PHP code
- new hook woof_slider_meta_query_type for meta slider
Example if you want to make search by float values (0.1, 0.2, etc …):add_filter('woof_slider_meta_query_type',function($type,$key){ return "DECIMAL(5,3)"; },2,10);