Delete Order
Overview
The Delete Order extension allows you to easily delete orders from your Magento store. It adds a "Delete Order" button to the order view page and a new mass action at the admin order grid page. This makes it easy to remove orders that are no longer needed, such as test orders or orders that have been canceled.
The extension is open source and can be customized to meet your specific needs. It is a great way to keep your Magento store clean and organized.
Features
- Delete orders from the admin order grid page
- Delete orders from the order view page
- Ability to remove orders in bulk
- Ability to remove test orders
- Ability to remove a single order from the admin panel
- Open source and customizable
Benefits
- Keep your Magento store clean and organized
- Remove orders that are no longer needed
- Improve store performance
Install the Delete Order extension today and start deleting orders from your Magento store with ease!
Magento Compatibility | 2.3.x, 2.4.x |
---|---|
License | GNU General Public License v3.0 (GPL-3.0) |
Composer Package | thesgroup/module-delete-order |
Automatically Add The Repository
Through an SSH connection, all you have to do is run the following command from your Magento installation directory
composer config repositories.www.sashas.org composer https://www.sashas.org
Manually Add The Repository
The typical Magento 2 installation has repositories section of composer.json like this:
{
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
]
}
You will need to add a repository by appending an object to the repositories object
{
"repositories": {
"0": {
"type": "composer",
"url": "https://repo.magento.com/"
},
"www.sashas.org": {
"type": "composer",
"url": "https://www.sashas.org"
}
},
}
How To Install The Module
Once the repository is added to the composer.json file, you can now install the packages that are available through it.
For example, let’s say you want to install the thesgroup/module-delete-order module through composer. Run the command below to install it:
composer require thesgroup/module-delete-order