FacetWP Color Add-On
A FacetWP facet to filter products by color
Filter results by color
The Color facet type allows users to filter posts or products by color.
The facet creates clickable rectangular color swatches from the color values in the Data source field.
Depending on the Behavior setting, selecting multiple color swatches narrows or widens the displayed result set. A second click on a selected color swatch resets that choice.
Available options
Name | Description |
---|---|
Data source | Choose a Data source that contains a valid color value. This can be a custom field, a category or custom taxonomy, or – if you are using WooCommerce – a product attribute. For using taxonomies and product attributes, see below. Valid color values are:
|
Behavior | Narrow the result set – when selecting multiple colors, only display results matching all selected colors: Widen the result set – when selecting multiple colors, display all results matching any selected colors: |
Count | The maximum number of color choices to show. Use -1 for no limit. However, note that FacetWP limits the maximum count at 1000 for usability and performance reasons. |
Soft limit | The number of choices before showing a “See {num} more” / “See less” link. link. Set to 0 to display all options. Note: this label is translatable with the facetwp_i18n hook, with __() , or with the gettext filter. |
Using a custom taxonomy or WooCommerce product attribute as Data source
In the Color facet’s settings, you can choose a taxonomy as the Data source. This can either be a custom taxonomy, or – if you are using WooCommerce – a global product attribute, which is also stored as a custom taxonomy.
When a taxonomy is set as Data source, FacetWP treats color values as follows:
- Term names are used to generate the display of the facet’s color swatches. This means that the term names must be a valid color value. (Technically, the term names are stored in FacetWP’s index table as
facet_display_value
). - Term slugs are used for filtering, which means they will show up in the url after interacting with the Color facet. (Technically, the term slugs are stored in FacetWP’s index table as
facet_value
).
You can use the same color value for the term name and term slug, but keep in mind that WordPress removes spaces, commas and other special characters when it auto-generates the term slug from the term name. For example, if the color value in the term name is set to rgb(255,0,0)
, the auto-generated term slug will become rgb25500
. This will work, but to make the filtered url look more readable, you can manually change the term slug to red
, which – for a facet with name “color” – will make the url look like: /?_color=red
.
Using a taxonomy term custom field as data source
With Advanced Custom Fields or Pods, you can add custom fields to taxonomy terms. If you set such a custom term field as the data source for the Color facet, you will notice that the facet does not display any choices. This is because custom fields attached to taxonomy terms cannot be indexed directly by FacetWP.
However, with a bit of custom code, using a custom term field as data source is possible. See this section on the Advanced Custom Fields page for instructions.
Integrations
The Color facet integrates with several WooCommerce ‘color swatches’ plugins:
Variation Swatches for WooCommerce
The Variation Swatches for WooCommerce plugin by Emran Ahmed lets you attach colors or images to your WooCommerce product attributes. When adding a facet, set its Data Source to the product attribute containing your custom color/image swatch.
Add support for dual colors
If you are using the Pro version of this plugin, you have the option to use “dual color” swatches in attributes with type “Color”. Dual-color swatches have a primary and a secondary color, displayed together in one swatch, with a 45-degree separation angle.
With a bit of custom code, it is possible to let these dual colors show up in a Color facet.
Add support for color groups
The Pro version’s “color groups” feature also can be used with FacetWP. With a bit of custom code it is possible to let FacetWP index these color groups instead of the individual colors.
WooCommerce Attribute Swatches
The WooCommerce Attribute Swatches plugin by IconicWP also lets you attach colors or images to your WooCommerce product attributes, similar to the Variation Swatches for WooCommerce plugin.
Display the color names next to the color swatches
Add the following code to your (child) theme’s functions.php to add the color names next to the color swatches.
This example uses $result['facet_value']
to retrieve the color’s name, which is the term slug if your color source is a taxonomy.
Depending on your source field setup you may need to use $result['facet_display_value']
(which is the term name in a taxonomy). Or you can use $result['term_id']
to lookup a custom field saved for the taxonomy term.
How to use custom PHP code?
PHP code can be added to your (child) theme’s functions.php file. Alternatively, you can use the Custom Hooks add-on, or a code snippets plugin. More info
Additionally, add the following CSS to put each color plus its name on a single line:
How to use custom PHP code?
PHP code can be added to your (child) theme’s functions.php file. Alternatively, you can use the Custom Hooks add-on, or a code snippets plugin. More info
Add result counts to Color facet swatches
By default, Color facet choices do not display result counts. Add the following code to your (child) theme’s functions.php to add counts to the right of the color swatches:
How to use custom PHP code?
PHP code can be added to your (child) theme’s functions.php file. Alternatively, you can use the Custom Hooks add-on, or a code snippets plugin. More info
Additionally, add the following CSS:
How to use custom PHP code?
PHP code can be added to your (child) theme’s functions.php file. Alternatively, you can use the Custom Hooks add-on, or a code snippets plugin. More info
Translate or change the “See more” / “See less” link
If you are using the “Soft limit” setting, and want to change or translate the “See {num}
more” / “See less” link texts, you can use a translation plugin to change the __()
strings, or you can use the facetwp_i18n hook.
Another way is using a gettext filter hook. Add the following code to your (child) theme’s functions.php:
How to use custom PHP code?
PHP code can be added to your (child) theme’s functions.php file. Alternatively, you can use the Custom Hooks add-on, or a code snippets plugin. More info
Reviews
Clear filtersThere are no reviews yet.