CSV Cart - Magento 2 module documentation
Author: Konrad Ptak
CSV Cart Module
Module overview
This module let your customer to easily import products to cart from simple CSV file.
Module compatibility
This module is compatibile with Magento Community versions: 2.4.
How it works
After installing the module head to Cart Overview, where you can choose file to upload.
CSV should be in the following format:
SKU, Quantity
SKU and quantity separated by comma.
If file format was right, and products are available, you should see a confirmation message.
Installation
Composer
- Add repo to composer.json:
"repositories": [
...
{
"type": "vcs",
"url": "git@git.auroracreation.com:aurora-modules/csvcart.git"
}
...
],
- Add package to composer.json:
"require": {
...
"aurora/module-csv-cart": "*"
...
},
- In Magento root folder run commands:
composer update aurora/module-csv-cart
php bin/magento module:enable Aurora_CsvCart
php bin/magento setup:upgrade
Instalacja manualna
- Unzip archive.
- Upload extension files on your server to:
{Magento root}
└── app/
└── code
- In Magento root folder run commands:
php bin/magento module:enable Aurora_CsvCart
php bin/magento setup:upgrade