Learn more about search for products via brands search, filter results by brands, search for brands pages.
Advanced Woo Search PRO from version 3.37 lets you search products by WooCommerce brands search, display brands within search results, filter search results by selected brands, and search brand archive pages.
Below we cover these features in detail.
Advanced Woo Search enables searching products across various product fields - title, SKU, content, GTIN, and more.
This also applies to product brands: you can search any WooCommerce product by its brand name.
How to enable search for products via brands
Advanced Woo Search lets you show various product details in search results - image, title, price, categories, tags, custom fields, and more.
This also applies to WooCommerce product brands: you can display the brand image and name for each product in the search results list.
How to enable brand display in product search results
With Advanced Woo Search PRO, you can create search result filters by stock status, sale status, taxonomies, custom fields, and more.
You can also filter by WooCommerce product brands to show or hide all products of a specific brand or group of brands.
This feature is powerful when combined with the search form filtering button: you can add a built-in filter for users to switch to results from a particular brand.
How to create a filter for search results based on product brand
Product brand → equal to → {Brand_name}
where {Brand_name} is the desired brand. This rule will restrict results to products with that brand.
Advanced Woo Search also supports searching taxonomy term archive pages and user archive pages.
This includes product brands: you can search by brand name (or description) and display the brand term in the results. Clicking it redirects users to the brand archive page, showing all associated products.
How to enable brands archive page search
Note: The above option affects live search results only. To show brand term results on the search results page, follow the instructions in this article.
You need Advanced Woo Search PRO version 3.37 or later to enable product searches by brand, display brands in results, filter by brand, and search brand archive pages.
Yes. In the Search Results settings, enable the Show product brand option. Products with a brand taxonomy will display both the brand image and name.
Yes, it is possible. By default brand field in case of relevance score equal to fields like product content or product custom taxonomy name. If you want to add more relevance for brand name matching, you can do this by using the following code snippet.
add_filter( 'aws_relevance_scores', function ( $relevance_array ) {
$relevance_array['brand'] = 500;
return $relevance_array;
} );
Yes, it is possible. By default plugin is searching only via brand name ( as and for all other product taxonomies ), but you can change this behavior by using following code snippet:
add_filter( 'aws_search_terms_description', function ( $search ) {
return true;
} );