Download
DQE's Adobe Commerce plugin is directly available on the Adobe Marketplace.
It includes multiple modules such as Core, Address, Email, Phone, Names, and B2B.
Warning: The plugin was developed using the Luma theme for Adobe Commerce. If you are using another theme, you may need to apply adjustments or implement the integration through the API.
How It Works
Autocomplete on field → Controller → DQE API → Model → JavaScript → HTML form → Database persistence.
Step-by-Step Installation
1. Download the Module from Magento Marketplace
- Download the DQE module from the Magento Marketplace.
2. Add a New Repository for Composer
- Open your
composer.jsonfile and add the following repository configuration:
"repositories": [
{
"type": "path",
"url": "/full/or/relative/path/to/development/package"
}
]
- Note: This path should be the full path to the module directory, not a ZIP path.
3. Require the Connector via Composer
- Run the following command to require the connector package from Composer:
composer require dqe-software/connector -vvv
4. Enable the Modules
- After installing the modules, run the following command to enable them:
php bin/magento module:enable Dqe_Core Dqe_Address Dqe_Email Dqe_Name
Related to