avalon23_image_size

Pass the size of the image to for the filter type “image” default: ‘thumbnail’ possibly:  ‘medium’, ‘large’ ,’full’ OR  array(55,55) For example, resize the image for the attribute color  

avalon23_taxonony_arg

this passes the attributes for the function “get_terms()” Convenient for sorting, excluding taxonomy terms For example, you want to sort terms by count

avalon23_image_url

Links for images type filter as “image” and “color” Values: URL  of  image term  of  current taxonomy For example, you want to display standard category images:  

avalon23_before_parse_query_args

all request arguments(of WP_Query) before the filter changes it Vallues Arguments for WP_Query (array) Current filtering data (array) loop name – Conventional name of the current request.  An example:  ‘count’ – for dynamic recalculation,  ‘shop’ – main woocommerce request,  ‘products’ – for  woocomerce  products shortcode

avalon23_after_parse_query_args

all request arguments(of WP_Query) after change Main hook for all filtering requests. You can change the current search query. Vallues Arguments for WP_Query (array) Current filtering data (array) loop name – Conventional name of the current request.  An example:  ‘count’ – for dynamic recalculation,  ‘shop’ – main woocommerce request,  ‘products’ – for  woocomerce  products shortcode […]

avalon23_current_lang

Sends the code of the current language.  for example if you pass “es_ES”:   Then you get these strings: How to add these lines read here

avalon23_fields_options_extend

This hook allows you to add additional settings for the filter element. for example you added a custom element as described in this article  and you need to add a text field to display different text for different filters In the settings of the custom element, you will see a text field: to get this […]

avalon23_extend_filter_fields

With this hook it is possible to add a new filter element. For example, you need to insert some text or html into the filter form: as a result you will see AND If you need to add a setting for this custom element read this article.