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
- Login to PrestaShop Admin Panel
- Go to Orders
- Click Shopping Carts
Here you will see:
- Cart ID
- Customer name
- Total cart value
- Date created
- Whether it was converted into an order
๐ If a cart has:
- Products added
- Customer details filled
- But no order created
โก That is an Abandoned Cart
You can click on any cart to:
- View products
- View customer
- Send email manually
๐ฅ 2๏ธโฃ How to Check Customer Details
- Go to Customers โ Customers
- Click on customer name
You can see:
- Name
- Phone
- Total orders
- Total spent
- Last visit
- Connected carts
Inside the customer profile, scroll down to see:
- Shopping carts created
- Orders history
๐ 3๏ธโฃ Better Way (Recommended): Use Abandoned Cart Module
Default PrestaShop does NOT send automatic abandoned cart emails.
For automation, install module like:
- Mailchimp
- Klaviyo
- PrestaShop Abandoned Cart Reminder Module
These modules allow:
- Automatic reminder emails
- Discount coupons
- Recovery statistics
- Conversion tracking
๐ 4๏ธโฃ Database Method (Advanced โ Since You Work With PHP)
If you want to check from database:
Table:
ps_cart
Condition for abandoned cart:
- id_cart exists
- id_customer NOT 0
- No matching id_order in ps_orders
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:
- Delete old abandoned carts (older than 6 months)
- Optimize
ps_carttable - Clean guest accounts
ย
