You’ll need an active merchant account to start accepting crypto payments. If you don’t have one yet, please reach out to our Sales team at [email protected] to set up your merchant account.
Get your Magento keys
- In the Marketplace, go to My Profile. Select Access Keys in My Products.
- Save your public and private keys.
Install the Magento plugin
From the marketplace
Make sure you have the composer installed.
- Open the Cryptoprocessing by CoinsPaid extension on the marketplace. In My Purchase, click Technical Details.
- Go to your Magento project directory and update your
composer.jsonfile:composer require <component-name>:<version>You can find the component-name and version values in thecomposer.jsonfile in the archive (undernameandversion). - Run:
php bin/magento setup:upgrade - Run:
php bin/magento setup:static-content:deploy. - Clear cache.
From the archive
- Unzip the plugin file.
- Create another directory called
app/code/VENDOR/MODULENAME/whereMODULENAMEmust be replaced by the module’s internal identifier. You can find it in the file in the extension ZIP file. For example,app/code/ConnectPay/Payment. Upload the extension zip file to this directory. - Upload the directory
app/code/VENDOR/MODULENAME/into the root directory of your Magento installation. All directories should match the existing directory structure. - Go to Magento 2 root directory. Run
php bin/magento setup:upgrade. - Run
php bin/magento setup:static-content:deploy. - Clear cache.