Delete Order
Overview
This Delete Order extension adds a "Delete Order" button to the order view page which provides the ability to remove orders from the Magento admin panel. In addition to that, there is a new mass action at the admin order grid page. It would be helpful when you want to remove several orders. It will be shown on the product admin grid's mass actions drop-down.
By having this functionality, you can remove orders which were placed for tests, in addition to any other orders that are no longer needed in the system. The module is open source and can be customized if needed.
Features
- Ability to remove orders in bulk
- You can configure admin access roles to allow or deny remove order functionality per admin user.
- Ability to remove test orders
- Ability to remove a single order from the admin panel
- Easy to install
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.packages.sashas.org composer https://packages.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/"
},
"packages.sashas.org": {
"type": "composer",
"url": "https://packages.sashas.org"
}
},
}
How To Install 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-name extension through composer. Run the command below to install it:
composer require thesgroup/module-delete-order