Issue: Prices and stock are not updating
# | Possible Reasons | Solutions |
1 | Magento Cron is not working. | If there are some issues with Magento Cron, please setup external Cron (independent of Magento Cron) by following the below guide. |
Magento Indexers are not up to date. | Please make sure to rebuild Magento Indexers before syncing data to Klevu. | |
3 | The website is using some third-party tool to update the prices and Stock. This involves the execution of direct database queries. As the Klevu module relies on the updated_at field of the catalog_product_entity table, In this case, updated products are not synced to Klevu. | Please enable the MySQL trigger by following the guide. |
The immediate solution: Rebuild the Magento Indexers and perform the full Catalog sync to Klevu by executing the below command on the Magento root:
php bin/magento klevu:syncdata --alldata
Issue: Catalog rule taking much time to update from admin
# | Possible Reasons | Solutions |
1 | This happens because Klevu module uses the observer to get the products data and change its properties so that it will be synced to Klevu. Time is taken while loading the product data. | Please follow the steps given below.
|
Issue: Images are not updating
# | Possible Reasons | Solutions |
1 | It can be the issue with data sync. | Please check if the Cron is running or not, and perform full Catalog sync to Klevu after rebuilding the Magento Indexers. |
2 | The product images are directly replaced on the server and have the same name as that of the previous image. | Please follow the steps given below.
|
Issue: Smart category navigation issue
# | Possible Reasons | Solutions |
1 | The website is using an older version of Smart Category Navigation. | In our latest release, we have optimised the code to display the products according to Klevu relevancy in case of larger data. Please find the attached file for the same. |
Issue: Large catalog sync issue
# | Possible Reasons | Solutions |
1 | The website is using product Object method to sync the data to Klevu which consumes a lot of memory and very slow in case of larger data. | Please use the collection method to sync data to Klevu. Here is the guide for the same. Please note, as the collection method relies on Magento Indexers, you need to make sure Magento Indexers are up to date while syncing products to Klevu. |