Jump to content

How to import products from CSV with multiple attributes


Recommended Posts

Hi, my problem is that i have lingerie products with multiple attributes.

Here is the example: Product ID, name, color, size, price, quantity

At this point the software recognize the product as different products. Different product for every size and color.
My table looks like this:

001, bikini, red, M, 5.00, 24
001, bikini, white, M, 5.00, 24
001, bikini, white, S, 5.00, 24

When I import the products this way, the system recognize them as 3 different products. How to fix them?

Thanx.

Link to comment
Share on other sites

You should create two separate CSV files: one for products and one for combinations. For example, create a product CSV file like this:

ID;Name
1;"Bikini"



and a combination CSV file like this:

Product ID;Options (Group:Value);Price;Quantity
1;Color:Red,Size:M;5.00;24
1;Color:White,Size:M;5.00;24
1;Color:White,Size:S;5.00;24

Link to comment
Share on other sites

  • 10 months later...
  • 4 years later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...