Setup Google Product Review Feed in Magento 2 using Adobe Marketplace
On this page, you will find detailed instructions for install the Google Product Review Feed extension in your Magento 2 store using the Adobe Marketplace. This guide is designed for users who already own the extension and need assistance with the setup process.
We will cover the necessary steps to ensure that your Hreflang tags are correctly implemented, enhancing your store's SEO for multilingual audiences. By the end of this guide, you will be able to successfully configure the extension to improve your website's visibility in different regions and languages.
Open the Magento Connect Manager
1. Log in to your Magento back-end Panel. 2. Go to System » Magento Connect » Magento Connect Manager. 3. Log in to the Magento Connect Manager using your admin Username and Password.
Installing a Magento 2 Extension via the Adobe Marketplace
Important Note before Installing
If the plugin was purchased from magmodules.eu, this installation method does not apply. The steps outlined below are only for orders placed via the Adobe Marketplace. Additionally, this is the only supported installation method for Marketplace purchases other installation methods mentioned in our support section do not apply to Marketplace orders.
1. Get Access Keys from Magento Marketplace
- Go to Magento Marketplace.
- Log in with your Magento account.
- Click on your profile (top-right) → My Profile.
- Navigate to Access Keys (under the Marketplace tab).
- If you don't have keys, generate a new one:
- Public Key = Username
- Private Key = Password
2. Check If Marketplace Credentials Are Set
composer config --global http-basic.repo.magento.com
This will display if credentials are currently configured. If no credentials are set, you will be prompted to enter them during the installation in step 3.
3. Install the Module via Composer
Connect to your server via SSH and navigate to the Magento root directory:
cd /path/to/magento/root
Use the following Composer command to install the module:
composer require magmodules/magento2-google-product-review-feed
When prompted, enter your Public Key as the username and Private Key as the password. Composer will store these credentials for future use.
4. Enable the Module
Run the following commands:
php bin/magento module:enable Magmodules_GoogleProductReview
php bin/magento setup:upgrade
php bin/magento cache:flush
If Magento is running in production mode, recompile and deploy static content:
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy -f
Note: The compilation and deployment steps may take several minutes to complete.
5. Verify Installation
Via Admin Panel:
- Log in to your Magento Admin Panel.
- Navigate to Stores → Configuration → Magmodules → Google Product Review Feed.
- Check if the module appears and start the configuration right away!
Via Command Line:
php bin/magento module:status | grep Magmodules_GoogleProductReview
The module should appear in the enabled modules list.
