Services Work Contact
EN SK
Magento

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:

  1. Log in to your Adobe Commerce Marketplace account
  2. Go to My Profile → Access Keys
  3. Create or copy your Public Key and Private Key
  4. On your server, add the keys to auth.json in 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

  1. Purchase fancy|studio QuickOrderGrid from the Adobe Commerce Marketplace
  2. Log in to the Marketplace, go to My Profile → My Purchases, and note the component name and version displayed for the extension
  3. 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.

  1. Enable the module:
bin/magento module:enable FancyStudio_QuickOrderGrid --clear-static-content
  1. 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
  1. 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)

  1. Purchase fancy|studio QuickOrderGrid from the Adobe Commerce Marketplace
  2. Log in to the Marketplace, go to My Profile → My Purchases, and note the component name and version
  3. In your local development branch, require the package:
composer require fancystudio/module-quickordergrid:1.0.0 --no-update
composer update
  1. 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.

  1. 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.