설치 및 구성
Deploying Product Recommendations to your storefront and Admin requires that you install the module and configure the Commerce Services Connector. As updates are released, you can easily update the installation with the latest version.
Product Recommendations 설치 install
Because the Product Recommendations module is a stand-alone metapackage, updates are released more frequently than Adobe Commerce. 최신 버그 수정 및 기능을 확인하려면 릴리스 정보를 참조하세요.
Install the magento/product-recommendations
module with Composer:
composer require magento/product-recommendations
페이지 빌더 지원 추가 pbsupport
Page Builder용 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 서비스 커넥터를 구성하십시오.이 연결을 구성하면 Commerce 인스턴스, 카탈로그 서비스 및 기타 지원 서비스 간에 데이터를 동기화하고 통신할 수 있습니다. 데이터 동기화는 SaaS 데이터 내보내기 확장에서 처리됩니다.
-
To ensure that catalog export can run correctly, confirm that the cron jobs and the indexers are running and the
Product Feed
indexer is set toUpdate by Schedule
.
After you successfully link the Commerce application to Commerce Services and specify the SaaS Data Space, the catalog sync begins. You can then verify that behavioral data is being sent to your storefront.
Monitor and troubleshoot data synchronization
From the Commerce Admin, you can monitor the synchronization process using the Data Management Dashboard. Use the Commerce CLI and logs to manage and troubleshoot the process.
You can then verify that behavioral data is being sent to your storefront.
Update your Product Recommendations installation update
Like all of Adobe Commerce, Product Recommendations uses Composer for installation and updates. magento/product-recommendations
모듈을 업데이트하려면 다음을 실행하십시오.
composer update magento/product-recommendations --with-dependencies
To update to a major version, such as from 5.0 to 6.0, you must edit the root composer.json
file for your project. (See the release notes for information about the latest version.) For example, let's open the main composer.json
file and search for the magento/product-recommendations
module:
"require": {
...
"magento/product-recommendations": "^5.0",
...
}
Let's bump the major version from 5.0
to 6.0
:
"require": {
...
"magento/product-recommendations": "^6.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
방화벽
방화벽을 통해 제품 권장 사항을 허용하려면 commerce.adobe.io
을(를) 허용 목록에 추가하십시오.
Uninstall Product Recommendations uninstall
If necessary, you can uninstall the product-recommendations module.