Hello @thefctr
In WooCommerce, you can create a single product with different variations (in your case, Men’s Boots and Women’s Boots) using the ‘Variable product’ option. Here’s how you can do it:
- First, navigate to your WordPress dashboard and select Products → Add New.
- Enter the product name and description, then under Product Data, select
Variable product
.
- Now, you’ll need to add attributes. Go to the Attributes tab, and click Add. Name the attribute (for example, “Gender”) and add values separated by a vertical bar (for example, “Men|Women”). Make sure to tick the
Used for variations
box and then click Save attributes
.
- Next, create another attribute for sizes. You can name it “Size” and add values (for example, “7|8|9” for Men and “5|6|7” for Women). Again, make sure to tick the
Used for variations
box and then click Save attributes
.
- After saving the attributes, go to the Variations tab. Select
Generate Variations
, then click OK
to confirm. WooCommerce will then create all possible combinations of the attributes. You can remove any unnecessary added variation.
- For each variation, you can set a specific price, SKU, and even upload a unique image.
As for displaying the corresponding size chart, you could consider using a plugin like Product Size Charts plugin, which allows you to create custom size charts and link them to your product variations, or any plugin of your choice.
I hope it helps!