Put it (also) in a admin contact_us page - with standard listing. That's what we do.
And on a side note - we answer old fashion via Outlook ... Before - we answered from the admin contact_us / via server. But my experience / learning from the past years - Do not automate everything - customers really like a personal touch. It is the only thing (IMHO) to compete with Amazon etc.
Where's my order?
- burt
- Core Team
- Posts: 4551
- Joined: Tue Oct 29, 2019 9:37 am
- Phoenix Version: v1.1.0.8
- : Buy Me A Beverage
- Has thanked: 252 times
- Been thanked: 412 times
Re: Where's my order?
How would the customer know that this is automated?
I *guess* by the immediate email that is in their inbox about 5 seconds after they contact you?
If that's the only way to detect this is automated...
...instead of an immediate email
...push the email into the Queue ?
I am not here to build for you.
I am here to build with you. Let's help each other.
I am here to build with you. Let's help each other.
- bonbec
- Contributor
- Posts: 190
- Joined: Mon Oct 26, 2020 12:23 pm
- Phoenix Version: V1.1.0.7
- Has thanked: 54 times
- Been thanked: 40 times
Re: Where's my order?
Indeed, if the automated email is sent immediately, we can guess that it's one.
Another case where we can guess that it's an automated email:
When a customer finds themselves in the same situation twice, they'll receive the same email twice, so they'll assume they're automated emails.
But let's be honest, when we create emails manually, we tend to use roughly the same formulas. Only the sending delay shows that it's not automatic.
The idea could be to have several email templates that would be chosen either randomly or managed by the script: if the customer has already received template A, send template B. Both are sent with a delay.
This risks being a bit of a hassle, but it can prevent the customer from feeling like they're being contacted by a robot.
Another case where we can guess that it's an automated email:
When a customer finds themselves in the same situation twice, they'll receive the same email twice, so they'll assume they're automated emails.
But let's be honest, when we create emails manually, we tend to use roughly the same formulas. Only the sending delay shows that it's not automatic.
The idea could be to have several email templates that would be chosen either randomly or managed by the script: if the customer has already received template A, send template B. Both are sent with a delay.
This risks being a bit of a hassle, but it can prevent the customer from feeling like they're being contacted by a robot.
Old MS2.2 PHP7.4 site being converted to CE Phoenix v1.1.0.6 PHP 8.3
-
azpro
- Contributor
- Posts: 177
- Joined: Fri Nov 06, 2020 8:25 am
- Phoenix Version: v1.1.0.6
- Has thanked: 30 times
- Been thanked: 34 times
Re: Where's my order?
What came to mind - If customers login to check the status of their order - they do not click through .. in the orders List they read the status (eg processing) at account_history.php but don't click to account_history_info.php where we provide a lot of comments about the order (eg longer delivery time).
Don't know why - but that happens a lot of the time.
Don't know why - but that happens a lot of the time.
- burt
- Core Team
- Posts: 4551
- Joined: Tue Oct 29, 2019 9:37 am
- Phoenix Version: v1.1.0.8
- : Buy Me A Beverage
- Has thanked: 252 times
- Been thanked: 412 times
Re: Where's my order?
The idea of my original post was a customer who ordered, but does not log in.
He just goes to contact_us to ask where order is.
1/ amend the account_history page to add in modal to popup of each Order. The modal would more or less show what account_history_info shows (per order).
1a/ add in some sort of alert telling people that there is comments, if they open the modal.
2/ Nuke account_history_info entirely
Seems like a win?
He just goes to contact_us to ask where order is.
Idea for your scenarioazpro wrote: ↑Thu Oct 16, 2025 9:37 am What came to mind - If customers login to check the status of their order - they do not click through .. in the orders List they read the status (eg processing) at account_history.php but don't click to account_history_info.php where we provide a lot of comments about the order (eg longer delivery time).
Don't know why - but that happens a lot of the time.
1/ amend the account_history page to add in modal to popup of each Order. The modal would more or less show what account_history_info shows (per order).
1a/ add in some sort of alert telling people that there is comments, if they open the modal.
2/ Nuke account_history_info entirely
Seems like a win?
I am not here to build for you.
I am here to build with you. Let's help each other.
I am here to build with you. Let's help each other.
-
azpro
- Contributor
- Posts: 177
- Joined: Fri Nov 06, 2020 8:25 am
- Phoenix Version: v1.1.0.6
- Has thanked: 30 times
- Been thanked: 34 times
Re: Where's my order?
No - I like account_history_info.php .......... I think will test with more text and images/icons to drive them to it. Maybe - Take out the status text on account_history.php ....
And otherwise I will take out my gun and shoot them
And I like it if they call me - it's IMHO the best way to promote your business.
And otherwise I will take out my gun and shoot them
And I like it if they call me - it's IMHO the best way to promote your business.
- bonbec
- Contributor
- Posts: 190
- Joined: Mon Oct 26, 2020 12:23 pm
- Phoenix Version: V1.1.0.7
- Has thanked: 54 times
- Been thanked: 40 times
Re: Where's my order?
Another way:
Create a new order_status called "Delayed".
When an order is moved to this status, an email is sent to the customer. A comment is added explaining the reason for the delay.
Then, when the order can continue, the status is changed to "Processing". The customer receives a new email.
This is what I did for my OSC store, and I no longer had customers contacting me to find out the status.
Create a new order_status called "Delayed".
When an order is moved to this status, an email is sent to the customer. A comment is added explaining the reason for the delay.
Then, when the order can continue, the status is changed to "Processing". The customer receives a new email.
This is what I did for my OSC store, and I no longer had customers contacting me to find out the status.
Old MS2.2 PHP7.4 site being converted to CE Phoenix v1.1.0.6 PHP 8.3
-
Dan Cole
- Senior Contributor
- Posts: 498
- Joined: Fri Oct 25, 2019 2:14 pm
- Phoenix Version: 1.0.8.21
- Has thanked: 67 times
- Been thanked: 61 times
Re: Where's my order?
Agreed. I don't see many customers logging back in to our site after they place their orders. Emails seem to be the best way to keep them informed in my opinion.bonbec wrote: ↑Thu Oct 16, 2025 10:50 am Another way:
Create a new order_status called "Delayed".
When an order is moved to this status, an email is sent to the customer. A comment is added explaining the reason for the delay.
Then, when the order can continue, the status is changed to "Processing". The customer receives a new email.
This is what I did for my OSC store, and I no longer had customers contacting me to find out the status.
Dan