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