Wheel Product Filter for WooCommerce plugin

Wheel product filter. Filter wheels by size, style and parameters for wheel shops

Buy Pro for $24 on TyresAddict

Common tool for any shops, not wheel-specific. But for wheel shops with thousands price positions it's a required tool. This plugin is just first step for wheel shop on WooCommerce + WordPress, but with basic features.

Video | .beta

Pro version

More features & (planning) Themes

Sidebar widget for filter wheels
Integration with Finder
Wheel style Filter
Different axle Filter
Elementor widgets & support
Themes
Customization features
Support for PneuPress (beta) & Chromium (beta)

Also, we can do special version for you, just let us know via support!

Tech details

Filtering

This plugin works with our other solutions for WooCommerce, as example, filtering is working via metadata. And our other plugin Tyre Custom Metadata can edit this custom wheel fields.

Setup

Filter are working on catalog and shop pages. You should setup it on sidebar and set working category

You can setup filter criterias at Customizer: size, wheel type: alloy/forged/wheel steel, style, brand.

Integration with Tyre Finder

When you set integration features, users can see their car model and\or get extended search: for both axles if car allow it, all wheel options for their car
For this you should set Integration widget on sidebar and set options.

Customization

You can customize search for increase ranges for size parameters. See FAQ below.

Built for Performance

Our plugins will not affect the speed of your WooCommerce store.

Easy to Use

We promise our plugins are easy to setup and easy for your customers to use.

Translation Ready

All of our plugins are ready to translate, and use translate.WP tools.

Friendly Support

We try to solve all plugin-related questions and make this fast.

Choose Your License

Which plan is right for you? Whichever one you choose, you'll get access to this incredible plugin and our support.

Free version

Free
  • Filter by wheel size
  • Filter by wheel type: alloy/forged..
  • Filter wheels by brand

Pro version

$ 24
  • Filter by wheel size
  • Filter by wheel type: alloy/forged..
  • Filter wheels by brand
  • Work with Tyre Filter
  • Filter by wheel style
  • Premium Support and Updates

FAQ about WHEEL Product Filter Pro

Common useful information about plugin

Has widget the shortcode?
Yes!
Example: [tyresaddict-wheel-filter category='wheels' exclude_categories='tyres,forged']

You can use parameters like widget with names category and exclude_categories
How to extend ranges for size: width, et, dia?
Just use filters:
function wf_search_et($et)
{
	if ($et === '') 
		return ['ui' => ''];

	return ['min' => $et, 'max' => $et, 'ui' => $et];
	return ['min' => $et-20, 'max' => $et+20, 'ui' => $et];
}

function wf_search_dia($dia)
{
	return ['min' => $dia, 'max' => 100, 'ui' => $dia];
}

function wf_search_width($width)
{
	return ['min' => $width-1, 'max' => $width+1, 'ui' => $width];
}


// Uncomment need custom filter

// search by car only
//add_filter( 'tyresaddict\wpfp\search\custom\car\et', 'wf_search_et' );
//add_filter( 'tyresaddict\wpfp\search\custom\car\dia', 'wf_search_dia' );
//add_filter( 'tyresaddict\wpfp\search\custom\car\width', 'wf_search_width' );

// for all searches - car & size
//add_filter( 'tyresaddict\wpfp\search\custom\et', 'wf_search_et' );
//add_filter( 'tyresaddict\wpfp\search\custom\dia', 'wf_search_dia' );
//add_filter( 'tyresaddict\wpfp\search\custom\width', 'wf_search_width' );