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.
More features & (planning) Themes
Also, we can do special version for you, just let us know via support!
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.
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.
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.
You can customize search for increase ranges for size parameters. See FAQ below.
Which plan is right for you? Whichever one you choose, you'll get access to this incredible plugin and our support.
Common useful information about plugin
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' );