I have a csv from flipkart with fields such as:
productId
title
description
mrp
price
productUrl
categories
Obviously these don't match up perfectly with the WooCommerce fields ( short description / long description vs description ), productId
vs sku
but does anyone have tips on how to go about matching these up to be compatible with WooCommerce, or can recommend any WP plugins that may do this?
Woocommerce product is also a custom post type (product) only. you can easily write your own custom importer.
Each product may have the following structure
the importer flow will be like
Woocommerce already has all the necessory codes you want, refer
WP_PLUGIN/woocommerce/includes/api/class-wc-api-products.php
trust me it's easy, i have already done that ( not for flipkart but shopify to woocommerce )