Reputation: 133
I need the data of customers who don't create an account on the website. These customers show up in the order list (sales -> orders) but not in the manage customer section. There's no way to filter the order list for this type of customers. Can this be done in the backend or should I write custom query or code to achieve this ? Is it possible for example to add a custom filter in the customers section ? I'm using version 1.4.2
Upvotes: 1
Views: 1704
Reputation: 23205
Build your queries/collections using orders with customer_id IS NULL
; these are orders from unregistered users.
Upvotes: 3