HUSKY - WooCommerce Products Filter Professional

woof_html_types_view_select

From ver.2.2.4/1.2.4 Using this hook it is possible to rewrite view of file: \views\html_types\select.php   [...]

woof_html_types_view_mselect

From ver.2.2.4/1.2.4 Using this hook it is possible to rewrite view of file: \views\html_types\mselect.php   [...]

woof_html_types_view_radio

From ver.2.2.4/1.2.4 Using this hook it is possible to rewrite view of file: \views\html_types\radio.php   [...]

woof_html_types_view_checkbox

From ver.2.2.4/1.2.4 Using this hook it is possible to rewrite view of file: \views\html_types\checkbox.php   [...]

woof_get_terms_args

From ver.2.2.4/1.2.4 This hook is added for compatibility with other plugins.

  • file: \classes\helper.php
  • public static function get_terms
[...]

woof_get_filtered_price_query

From ver.2.2.4/1.2.4 This hook is added for compatibility with other plugins.

  • file: \classes\helper.php
  • public static function get_filtered_price
[...]

woof_step_filter_img_size

From v.2.2.4/1.2.4 For resizing images in woof step filter.

add_filter('woof_step_filter_img_size', function($size) {
    $size = 'large'; //thumbnail, medium, large, full, array(200, 200)
    //woocommerce_thumbnail ,woocommerce_single, woocommerce_gallery_thumbnail
    return $size;
});
  [...]