Brands in WooCommerce help to organize the products in your store. WooCommerce doesn’t support brands by default, so you need to use one of the WooCommerce extensions. FiboFilters is integrated with the most popular WooCommerce plugins that serve brands’ functionality. The integration allows you to create filters using “brands” sources and as a result, allows customers to filter products by brands.
Compatible plugins
We tested compatibility with the following WooCommerce plugins:
If you use not supported plugins or you create a WooCommerce website from scratch, you will need a simple snippet to recognize your taxonomy brand name in the filters creator.
add_filter( 'fibofilters/filters/custom_sources/brand_providers', function ( $providers ) {
$providers[] = [
'provider' => 'My brands feature',
'taxonomy' => 'product_brand' // Your custom taxonomy name for brands
];
return $providers;
} );
Verify if the integration works
If integration works, you should see brands in the list of data sources. Go to WooCommerce -> FiboFilters -> Filters and add a new filter. Open a Data source dropdown and check, if you can see brands as one of the items.