The official Trustpilot extension for Magento 2
Trustpilot is an open review platform that helps consumers make better choices while helping companies showcase and improve their customer service., (*1)
To install the Trustpilot plugin on your website, please follow the steps provided in this package., (*2)
How to install the Trustpilot extension
- Log in to your Magento server using SSH (Secure Shell) and run the commands that follow.
- Create a system and database backup by navigating to the root directory of your Magento installation and execute this command:
php bin/magento setup:backup --code --db --media
(Please note that your website will be inaccessible during the backup process.)
3. Enable maintenance mode., (*3)
php bin/magento maintenance:enable
- Download and install the Trustpilot plugin using Composer.
composer require âtrustpilot/module-reviewsâ
- If this is the first time you install a plugin using Composer, Magento will ask you to provide your Magento Marketplace account credentials. To find your account information go to https://marketplace.magento.com > My profile > Access Keys > Create A New Access Key. Note: Your public key is your username, while your private key is your password.
- Enable the Trustpilot plugin.
php bin/magento module:enable Trustpilot_Reviews --clear-static-content
- Update the database schema. (Please proceed cautiously: This command is global and will enable all Magento plugins that youâ ve installed.)
php bin/magento setup:upgrade
- Compile (This command is only required in production mode.)
php bin/magento setup:di:compile
- Deploy static content (This command is only required in production mode.)
php bin/magento setup:static-content:deploy
- Disable maintenance mode.
php bin/magento maintenance:disable