HUSKY - Product Filter for WooCommerce

woof_min_price_filter

This hook sets the minimum price of the HUSKY price filter by your own logic

Use next code in file functions.php of the current WordPress theme:

add_filter('woof_min_price_filter', function ($min) {
    return 20;
});