Add size as a product attribute
Add a product's size as a taxonomy attribute making it possible to filter a product list based on its size.
Heads-up!
This tutorial is still valid but a simpler version exists here.
In this article
Add size attribute
Before you begin, the Size attribute must exist. To add it, go here WordPress Admin Area > Products > Attributes and add Size in the "Name" field and size in the "Slug" field.
Use a single field for attribute
In this example, we will choose one field from the product's list of fields and store that field as the size attribute.
- 1
-
Identify the field
We can view all fields by clicking a product's name on the add/edit Product Sets pages in your WordPress Admin Area. We see that this product does have a "size" field so we will use that.
- 2
-
Create a custom plugin
If you haven't done so already, create a custom plugin.
- 3
-
Add custom code
Add the following code to your custom plugin file.
- 4
-
Add/Update product sets
These changes will only take effect after any new Product Sets are created or after existing Product Sets are updated.
- 5
-
Expose filter as widget
Go here WordPress Admin Area > Appearance > Widgets and add a WooCommerce Layered Nav widget to your sidebar and configure it to display the size attribute like this:
Use multiple fields for attribute
Sometimes merchants store product information in different fields than other merchants. For example, some merchants will store the product's size in the "size" field while others will use a different field. In this example, we will use multiple fields to get the product's size.
- 1
-
Identify the fields
We can view all fields by clicking a product's name on the add/edit Product Sets pages in your WordPress Admin Area. We see that this product does not have a "size" field however it does have a field named "custom1" which contains the product's size. So we will use that field if the "size" field does not exist.
- 2
-
Create a custom plugin
If you haven't done so already, create a custom plugin.
- 3
-
Add custom code
Add the following code to your custom plugin file.
- 4
-
Add/Update product sets
These changes will only take effect after any new Product Sets are created or after existing Product Sets are updated.
- 5
-
Expose filter as widget
Go here WordPress Admin Area > Appearance > Widgets and add a WooCommerce Layered Nav widget to your sidebar and configure it to display the size attribute like this:
Use controlled vocabulary with one field
In the above examples, we rely on the names the merchants have provided for their product sizes. But this can sometimes lead to unexpected results like this:
In this example, we will provide a controlled vocabulary to ensure we have an organized size attribute filter.
- 1
-
Identify the field
We can view all fields by clicking a product's name on the add/edit Product Sets pages in your WordPress Admin Area. We see that this product does have a "size" field so we will use that.
- 2
-
Create a custom plugin
If you haven't done so already, create a custom plugin.
- 3
-
Add custom code
Add the following code to your custom plugin file.
Notice we have provided a list of terms that should be associated with the main term (ie. size) that we want to use in our size filter.
- 4
-
Add/Update product sets
These changes will only take effect after any new Product Sets are created or after existing Product Sets are updated.
- 5
-
Expose filter as widget
Go here WordPress Admin Area > Appearance > Widgets and add a WooCommerce Layered Nav widget to your sidebar and configure it to display the size attribute like this:
Use controlled vocabulary with multiple fields
This is useful when a merchant provides the product's size in a field other than "size" or if a merchant only provides the size in the product's name. Using a controlled vocabulary on a variety of fields, we can extract the data we need!
- 1
-
Identify the fields
In this example, we will use 3 fields: size, custom1 and name in that order.
- 2
-
Create a custom plugin
If you haven't done so already, create a custom plugin.
- 3
-
Add custom code
Add the following code to your custom plugin file.
- 4
-
Add/Update product sets
These changes will only take effect after any new Product Sets are created or after existing Product Sets are updated.
- 5
-
Expose filter as widget
Go here WordPress Admin Area > Appearance > Widgets and add a WooCommerce Layered Nav widget to your sidebar and configure it to display the size attribute like this:
Provide default attribute value
When using the controlled vocabulary mentioned in the previous 2 examples you will see that if the size field doesn't contain a size in the controlled vocabulary you have configured, it will be ignored.
For example, if the product's size is XXXX Large, it will be ignored because we have not configured any controlled vocabulary for that term.
In these cases, we need to configure our code to either use the provided term (ie. XXXX Large) or we can provide a default value. in this example, we will force the script to use the value provided in the "size" or "custom1" fields if they exist, otherwise not use any value.
- 1
-
Identify the fields
In this example, we will use 3 fields: size, custom1 and name in that order.
- 2
-
Create a custom plugin
If you haven't done so already, create a custom plugin.
- 3
-
Add custom code
Add the following code to your custom plugin file.
Notice we are forcing the script to use the value provided by the merchant if there is no match in our controlled vocabulary. However we do not provide a default in line #16 as we do not want to store the product's name as a size attribute.
- 4
-
Add/Update product sets
These changes will only take effect after any new Product Sets are created or after existing Product Sets are updated.
- 5
-
Expose filter as widget
Go here WordPress Admin Area > Appearance > Widgets and add a WooCommerce Layered Nav widget to your sidebar and configure it to display the size attribute like this: