How to integrate PrestaShop with search service
The process of integration PrestaShop with LogsHub.com search service is divided into 2 parts:
- Installation of plugin.
- Running ecommerce-synch.
Additionally, you can better integrate search box view with your store's template. Every store is different.
Plugin
Features:
- Connection admin configuration
- View admin configuration
- Search box on frontend
Ecommerce Synch
We have created ecommerce-synch tool that supports PrestaShop platform. This tool synchronizes products and categories with our search service. You can see it on GitHub
How does it work
Cron executes synchronization command. It takes configuration file, determine what is input module. It executes its SQL SELECT statements and saves result into CSV files (products and categories). Output module push CSV data into our search service.
PrestaShop supported versions
- 1.6.1.10 - 1.7.5.1
Other versions might work as well, but was not tested.
Installation
composer require logshub/ecommerce-synch
- Make sure you set
module = "prestashop"
ininput
section. - Pay attention to option
prestashop_shop_id = "1"
, as might be changed in your case.
More details on GitHub