Currently in Woocommerce, when handling variable products, the SKU needs to be defined for each variant in full.
What I would like to do, is define a parent SKU, and then define suffix to SKU for each variant, and the final SKU is produced by concatenating the parent plus the variant suffix.
So lets say I have a parent product of base SKU PRODUCT_0001
, the SKU PRODUCT_0001
I would like to define here:
Then for variants, say VARIANT_A
, I would like to define the suffixes here:
Now the final SKU for the variant of the product (ie what is transmitted during order workflow), I would like to represent as:
PRODUCT_0001/VARIANT_A
This way, this prevents double-handling of the same base product code when setting-up/defining many variants.
Is there an easy way to accomplish this?