安装和配置
将Product Recommendations部署到店面和管理员需要安装模块并配置Commerce服务连接器。 发布更新后,您可以轻松地将安装更新为最新版本。
安装Product Recommendations install
由于Product Recommendations模块是独立的中继包,因此比Adobe Commerce更频繁地发布更新。 为确保您及时了解最新的错误修复和功能,请参阅发行说明。
使用编辑器安装magento/product-recommendations
模块:
composer require magento/product-recommendations
添加页面生成器支持 pbsupport
页面生成器的Product Recommendations是一个可选模块,需要单独安装。 要将Product Recommendations与页面生成器一起使用,请通过运行以下命令来安装模块:
composer require magento/module-page-builder-product-recommendations
通过在页面生成器中启用Product Recommendations,您可以将现有的活动推荐单元添加到在页面生成器中创建的任何内容,例如页面、块和动态块。
有关详细说明,请参阅将 Product Recommendations 与页面生成器内容一起使用。
添加视觉相似性推荐类型 vissimsupport
通过 视觉相似度 推荐类型,您可以将推荐单元部署到产品详细信息页面,该页面显示与正在查看的产品视觉上相似的产品。 当产品的图像和视觉方面是购物体验的重要部分时,此推荐类型最有用。 通过运行以下命令安装 视觉相似度 推荐类型:
composer require magento/module-visual-product-recommendations
配置Product Recommendations configure
-
安装
magento/product-recommendations
模块后,通过指定API密钥并选择SaaS数据空间来配置Commerce Services Connector。通过配置此连接,可以实现Commerce实例、目录服务和其他支持服务之间的数据同步和通信。 数据同步由SaaS Data Export扩展处理。
-
为确保目录导出可以正确运行,请确认cron作业和索引器正在运行,并且
Product Feed
索引器设置为Update by Schedule
。
成功将Commerce应用程序链接到Commerce Services并指定SaaS数据空间后,将开始目录同步。 然后,您可以验证行为数据是否已发送到店面。
监测数据同步并排除其故障
通过Commerce Admin,您可以使用数据管理功能板监视同步过程。 使用Commerce CLI和日志管理该进程并对其进行故障排除。
然后,您可以验证行为数据是否已发送到店面。
更新Product Recommendations安装 update
与所有Adobe Commerce一样,Product Recommendations使用Composer进行安装和更新。 要更新magento/product-recommendations
模块,请运行以下命令:
composer update magento/product-recommendations --with-dependencies
要更新到主要版本,例如从3.0到4.0,您必须编辑项目的根composer.json
文件。 (有关最新版本的信息,请参阅发行说明。) 例如,让我们打开主composer.json
文件并搜索magento/product-recommendations
模块:
"require": {
...
"magento/product-recommendations": "^3.0",
...
}
让我们将主要版本从3.0
增大到4.0
:
"require": {
...
"magento/product-recommendations": "^4.0",
...
}
保存composer.json
文件并运行:
composer update magento/product-recommendations --with-dependencies
或者,如果您已安装magento/module-visual-product-recommendations
和magento/module-page-builder-product-recommendations
模块:
composer update --with-dependencies magento/product-recommendations magento/module-visual-product-recommendations magento/module-page-builder-product-recommendations
防火墙
要让Product Recommendations通过防火墙,请将commerce.adobe.io
添加到允许列表。
卸载Product Recommendations uninstall
如有必要,您可以卸载产品推荐模块。