trustpilot / module-reviews
Trustpilot评论扩展使商家能够轻松方便地从客户那里收集评论,以推动他们的营销活动,提高销售转化率,建立在线声誉,并获取商业洞察。
2.6.580
2023-01-18 09:08 UTC
Requires
- magento/framework: >=100.0.20
- magento/module-admin-notification: >=100.0.7
- magento/module-backend: >=100.0.12
- magento/module-catalog: >=100.0.17
- magento/module-checkout: >=100.0.16
- magento/module-configurable-product: >=100.0.12
- magento/module-eav: >=100.0.12
- magento/module-sales: >=100.0.16
- magento/module-store: >=100.0.9
- psr/log: >=1.0.0
- dev-master
- 2.6.580
- 2.6.576
- 2.6.574
- 2.6.572
- 2.6.566
- 2.6.564
- 2.6.563
- 2.6.560
- 2.6.557
- 2.6.555
- 2.6.548
- 2.6.546
- 2.6.542
- 2.6.541
- 2.6.531
- 2.6.524
- 2.6.522
- 2.6.519
- 2.6.502
- 2.6.500
- 2.6.495
- 2.6.478
- 2.6.474
- 2.6.469
- 2.6.465
- 2.6.451
- 2.6.447
- 2.6.444
- 2.6.439
- 2.6.437
- 2.6.435
- 2.6.430
- 2.6.427
- 2.6.423
- 2.6.422
- 2.6.417
- 2.6.408
- 2.6.371
- 2.6.360
- 2.6.355
- 2.5.347
- 1.0.232
- 1.0.230
- 1.0.220
- 1.0.218
- 1.0.216
- 1.0.214
- 1.0.201
- 1.0.163
- 1.0.162
- 1.0.142
- 1.0.141
- 1.0.128
- 1.0.82
- 1.0.79.1
- 1.0.2
- 1.0.1
- 1.0.0
This package is auto-updated.
Last update: 2024-09-18 15:34:27 UTC
README
Trustpilot是一个开放评论平台,它帮助消费者做出更好的选择,同时帮助企业展示和改进客户服务。
要在您的网站上安装Trustpilot插件,请按照此包中提供的步骤操作。
如何安装Trustpilot扩展
- 使用SSH(安全壳)登录到您的Magento服务器,并运行以下命令。
- 通过导航到您的Magento安装根目录并执行以下命令来创建系统和数据库备份
php bin/magento setup:backup --code --db --media
(请注意,在备份过程中,您的网站将不可访问。) - 启用维护模式。
php bin/magento maintenance:enable
- 使用Composer下载并安装Trustpilot插件。
composer require “trustpilot/module-reviews”
- 如果您是第一次使用Composer安装插件,Magento将要求您提供您的Magento Marketplace账户凭证。要查找您的账户信息,请访问 https://marketplace.magento.com > 我的资料 > 访问密钥 > 创建新的访问密钥。 注意:您的 公钥 是您的用户名,而您的 私钥 是您的密码。
- 启用Trustpilot插件。
php bin/magento module:enable Trustpilot_Reviews --clear-static-content
- 更新数据库模式。(请谨慎操作:此命令是全局的,将启用您已安装的所有Magento插件。)
php bin/magento setup:upgrade
- 编译(此命令只在生产模式下需要。)
php bin/magento setup:di:compile
- 部署静态内容(此命令只在生产模式下需要。)
php bin/magento setup:static-content:deploy
- 禁用维护模式。
php bin/magento maintenance:disable