Site icon PrestaShop | Magento | CRM Modules

Prestashop how to check abandoned cart and customers

In PrestaShop, you can check abandoned carts and customer details from the Back Office.

Here is the complete step-by-step guide ๐Ÿ‘‡


๐Ÿ”Ž 1๏ธโƒฃ How to Check Abandoned Carts in PrestaShop

โœ… Method 1: From Orders โ†’ Shopping Carts

  1. Login to PrestaShop Admin Panel
  2. Go to Orders
  3. Click Shopping Carts

Here you will see:

๐Ÿ‘‰ If a cart has:

โžก That is an Abandoned Cart

You can click on any cart to:


๐Ÿ‘ฅ 2๏ธโƒฃ How to Check Customer Details

  1. Go to Customers โ†’ Customers
  2. Click on customer name

You can see:

Inside the customer profile, scroll down to see:


๐Ÿ“Š 3๏ธโƒฃ Better Way (Recommended): Use Abandoned Cart Module

Default PrestaShop does NOT send automatic abandoned cart emails.

For automation, install module like:

These modules allow:


๐Ÿ›  4๏ธโƒฃ Database Method (Advanced โ€“ Since You Work With PHP)

If you want to check from database:

Table:

ps_cart

Condition for abandoned cart:

SQL Example:

SELECT c.id_cart, c.id_customer, c.date_add
FROM ps_cart c
LEFT JOIN ps_orders o ON c.id_cart = o.id_cart
WHERE o.id_order IS NULL
AND c.id_customer != 0;

This will show abandoned carts.


๐Ÿ’ก Extra Tip (For Your Speed Optimization Work)

If your store is slow:


ย 

Exit mobile version