Zen Cart Logo
Forums / Managing Customers and Orders / List of customer's previously ordered items?

List of customer's previously ordered items?

Locked

Views: 2,237

Results 1 to 7 of 7
This thread is locked. New replies are disabled.
9 Aug 2006, 9:12 PM
#1
hsitz avatar

hsitz

New Zenner

Join Date:
Aug 2006
Posts:
9
Plugin Contributions:
0

List of customer's previously ordered items?

I'm looking into using ZenCart for an ecommerce site where there would be a lot of repeat business, customers coming back to order same thing over and over again. Is there any built in functionality to show a logged-in user a list of the items they have previously purchased, so they don't have to hunt around through menu system picking out each separately.

I know the online grocery stores have something like this. So I'm wondering whether this functionality is built in to ZenCart, and if it's not built in I'm wondering how hard it would be add.

Thanks,

Herb

9 Aug 2006, 9:27 PM
#2
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: List of customer's previously ordered items?

You would need to customize the My Account area to be able to do something like a repeat order for the customer ...

Providing products_id remains the same as well as attributes, this would be possible to do ...

9 Aug 2006, 9:44 PM
#3
hsitz avatar

hsitz

New Zenner

Join Date:
Aug 2006
Posts:
9
Plugin Contributions:
0

Re: List of customer's previously ordered items?

Ajeh:

You would need to customize the My Account area to be able to do something like a repeat order for the customer ...

Providing products_id remains the same as well as attributes, this would be possible to do ...

Thanks. I'm not sure I'm really looking for something like a repeat order. Basically what I want would be something like a product category of "Previously ordered items" that will show the user the 10 or 20 products they normally order, out of the thousands that are available on the site. Then they could just click on 'add to cart' for the products that they wanted in the current purchase.

Is that same thing as what you were suggesting? I'll look into the My Account area.

Thanks again,

Herb

9 Aug 2006, 9:49 PM
#4
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: List of customer's previously ordered items?

I am suggesting that you have to write this as it does not exist ... and suggested one place where this could be done and that the customer could start with a previous order ...

Or, you can write a completely different page where it lists all Products ever ordered by the customer ...

9 Aug 2006, 10:00 PM
#5
hsitz avatar

hsitz

New Zenner

Join Date:
Aug 2006
Posts:
9
Plugin Contributions:
0

Re: List of customer's previously ordered items?

Great, thanks, now that I know it's not already there I'll look into creating my own. Probably along lines you suggested of a page where it shows them everything they've ever ordered, mayb in descending order of items ordered most recently or frequently down to items rarely ordered.

-- Herb

10 Aug 2006, 8:22 AM
#6
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
177

Re: List of customer's previously ordered items?

Have you looked at the Order-History sidebox?
Admin->Tools->Layout Boxes Controller ... turn it on, make it show on the left with order=0. Now you'll see all your most recent orders right there on the page after you log in.

Then add this style to your stylesheet to adjust the bulleted list somewhat:```html
.orderHistList {
margin: 1em;
padding: 0.2em 0em;
}

10 Aug 2006, 2:03 PM
#7
hsitz avatar

hsitz

New Zenner

Join Date:
Aug 2006
Posts:
9
Plugin Contributions:
0

Re: List of customer's previously ordered items?

DrByte:

Have you looked at the Order-History sidebox?

Thanks. That looks like just what I was looking for.