Installation
Prerequisites
Before installing, make sure your Adobe Commerce or Magento Open Source instance is connected to the Marketplace repository. If you haven't done so already:
- Log in to your Adobe Commerce Marketplace account
- Go to My Profile → Access Keys
- Create or copy your Public Key and Private Key
- On your server, add the keys to
auth.jsonin your Magento root directory (or enter them when prompted by Composer):
{
"http-basic": {
"repo.magento.com": {
"username": "<your-public-key>",
"password": "<your-private-key>"
}
}
}
Installation — Adobe Commerce (On-Premises) & Magento Open Source
- Purchase fancy|studio QuickOrderGrid from the Adobe Commerce Marketplace
- Log in to the Marketplace, go to My Profile → My Purchases, and note the component name and version displayed for the extension
- On your server, require the package via Composer (replace the version with the one from step 2):
composer require fancystudio/module-quickordergrid:1.0.0
When prompted, enter your Marketplace access keys — the public key is your username, the private key is your password.
- Enable the module:
bin/magento module:enable FancyStudio_QuickOrderGrid --clear-static-content
- Run setup, compile, and deploy static content:
bin/magento setup:upgrade
bin/magento setup:di:compile
bin/magento setup:static-content:deploy
bin/magento cache:clean
- Verify the module is active:
bin/magento module:status FancyStudio_QuickOrderGrid
The Quick Order page is automatically available at:
https://your-store.com/quickorder
Installation — Adobe Commerce (Cloud)
- Purchase fancy|studio QuickOrderGrid from the Adobe Commerce Marketplace
- Log in to the Marketplace, go to My Profile → My Purchases, and note the component name and version
- In your local development branch, require the package:
composer require fancystudio/module-quickordergrid:1.0.0 --no-update
composer update
- Add the updated files to git and push to your Cloud environment:
git add composer.json composer.lock
git commit -m "Add fancy|studio QuickOrderGrid extension"
git push origin <branch-name>
The Cloud platform automatically builds and deploys the extension. The composer.lock file must be included in the commit to ensure consistent dependency resolution across environments.
- After deployment completes, SSH into the remote environment and verify:
bin/magento module:status FancyStudio_QuickOrderGrid
The Quick Order page is automatically available at:
https://your-store.com/quickorder
Note: Both installation methods download the extension from repo.magento.com using your Marketplace access keys. The extension is only available to accounts that have purchased a valid license.