Install the TurnTo Magento Extension
You can install the TurnTo Magento extension in one of these ways:
Use Composer (Recommended)
Use the Magento Marketplace
Copy files from GitHub
This extension is compatible with Magento Community and Enterprise editions, versions 2.1, 2.2, 2.3 and 2.4.
After you have installed the extension, you can Configure the TurnTo Magento Extension.
Install with Composer (Recommended)
TurnTo's Magento 2 Extension is registered on Packagist. Updates are automatically added there. The package is listed under:
turnto/social-commerce
Install extension
To install the latest version of the extension, run the following commands from the root directory of your Magento instance:
composer require turnto/social-commerce
bin/magento module:enable --clear-static-content TurnTo_SocialCommerce
bin/magento setup:upgrade
bin/magento cache:flush
Update extension
If you already have the extension installed, you can upgrade to a more recent version by running the following commands from the root directory of your Magento instance.
composer require turnto/social-commerce:x.x.x
composer update turnto/social-commerce
bin/magento module:enable --clear-static-content TurnTo_SocialCommerce
bin/magento setup:upgrade
bin/magento cache:flush
Replace x.x.x
with the version you intend to upgrade to.
Install from the Magento Marketplace
Navigate to the Magento Marketplace and Sign In.
Navigate to the TurnTo Product Reviews extension listing in the Magento Marketplace.
Select your Magento Edition and Store Version.
Click the Add to Cart button.
Click the Cart icon, and then the Proceed to Checkout button.
Proceed through Checkout.
Create a directory at the
app/code/TurnTo/SocialCommerce
path in your Magento root directory.Extract the contents of the marketplace download file into the
app/code/TurnTo/SocialCommerce
directory you created in step 7.Run following commands from your root Magento installation directory:
BASHbin/magento module:enable --clear-static-content TurnTo_SocialCommerce bin/magento setup:upgrade bin/magento cache:flush
Copy Files from GitHub
Create a directory at the
app/code/TurnTo/SocialCommerce
path in your Magento root directory.Download the latest version of the extension code from the GitHub repository.
Extract the contents of the zip or tag file into the
app/code/TurnTo/SocialCommerce
directory you created in step 1.Run the following commands from your root Magento installation directory:
BASHbin/magento module:enable --clear-static-content TurnTo_SocialCommerce bin/magento setup:upgrade bin/magento cache:flush