Can any part of your day to day be automated?

Open to all! Ask other shopowners for help.
User avatar
burt
Core Team
Posts: 4546
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: Can any part of your day to day be automated?

Post by burt »

14Steve14 wrote: Tue Sep 02, 2025 5:10 pm All we needed to do was to create a list of all products with numbers sold over 1, 2, 3, 6 ands 12 months and it now produces data on the information we give it. Improving some of the outdated reports
In the last couple of months I've been working on something I call "Pulse Analytics" - this analytics system has the ability to track all sorts of things and produce quite interesting reports.

Pulses are things like;

product_viewed
product_purchased
checkout_start
checkout_end
customer_login
... and so on.

I'm still sort of working on it when I have time and effort.
I am not here to build for you.
I am here to build with you. Let's help each other.


Join The Code Co-op to get access to your library in the Code Co-op Forum
User avatar
burt
Core Team
Posts: 4546
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: Can any part of your day to day be automated?

Post by burt »

14Steve14 wrote: Tue Sep 02, 2025 5:10 pm Our biggest time waster is adding tracking information when we update the order status and then need to do the same to update Paypal. We use order comments to add in tracking data which gets added to the order status update email. On days we have over 40-50 orders and it takes time to manually enter this info. No idea how to automate it though.
Paypal have an API for that;

https://developer.paypal.com/docs/track ... integrate/

I'm unsure if @BrockleyJohn integrated it into his Paypal apps
I am not here to build for you.
I am here to build with you. Let's help each other.
BrockleyJohn
Certified Developer
Posts: 173
Joined: Mon Mar 01, 2021 5:37 pm
Phoenix Version:
Has thanked: 2 times
Been thanked: 30 times

Re: Can any part of your day to day be automated?

Post by BrockleyJohn »

burt wrote: Tue Sep 02, 2025 6:13 pm
14Steve14 wrote: Tue Sep 02, 2025 5:10 pm Our biggest time waster is adding tracking information when we update the order status and then need to do the same to update Paypal. We use order comments to add in tracking data which gets added to the order status update email. On days we have over 40-50 orders and it takes time to manually enter this info. No idea how to automate it though.
Paypal have an API for that;

https://developer.paypal.com/docs/track ... integrate/

I'm unsure if @BrockleyJohn integrated it into his Paypal apps
Not yet - needs a bit of thought to be widely usable. Probably more thought / research than work in it actually.
User avatar
burt
Core Team
Posts: 4546
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: Can any part of your day to day be automated?

Post by burt »

Circling back on this...as I read something earlier which reminded me.
Automation is not simply "doing the same thing faster".
The real shift is when it frees you to do something completely different with that time.
With that in mind, is there anything in your work process, that could be automated...
MyGamesShop
Contributor
Posts: 131
Joined: Wed Mar 10, 2021 3:02 am
Phoenix Version: v1.1.0.6
Has thanked: 8 times
Been thanked: 5 times

Re: Can any part of your day to day be automated?

Post by MyGamesShop »

Have the search bar opened without the additional click in the Categories / Products page. Like it used to be.
I input in the same format for each added product which I cut and paste then edit in the new product details. (Maybe an editable default template for new product for product description)
AsTecModels
Member
Posts: 99
Joined: Wed Mar 18, 2026 6:20 pm
Phoenix Version: v1.1.0.6
Has thanked: 6 times
Been thanked: 3 times

Re: Can any part of your day to day be automated?

Post by AsTecModels »

burt wrote: Thu Aug 28, 2025 5:15 pm There must be some really dull and boring part of your day-to-day shopowning experience...that can be eased?

FOR EXAMPLE

Let's say you get 20 orders overnight;

admin > orders.php
select the earliest of the overnight orders
click "invoice"
wait.
print it
click "packing slip"
wait
print it
back to admin > orders.php

Repeat 20 times.

How long? Let's say 20 minutes.

Instead, do this;

admin > batch

select the 20 orders
click print invoice
click print packing slip

How long: 1 minute

There must be more processes that are so dull like this, that we can make easier?
That would be ideal, and the same for the packing label.
Also have the queued emails automatically send out.
14Steve14
Senior Contributor
Posts: 920
Joined: Fri Oct 25, 2019 7:01 pm
Phoenix Version: v1.0.9.1
Has thanked: 17 times
Been thanked: 103 times

Re: Can any part of your day to day be automated?

Post by 14Steve14 »

AsTecModels wrote: Tue Apr 21, 2026 6:47 am That would be ideal, and the same for the packing label.
Also have the queued emails automatically send out.
The batch actions modules are a time saver. So simple to use and well worth the initial investment alone. It saves us so much time every day. We print two copies of each invoice, one for our records, and one for the customer. It would be great if there was a way to send a PDF of each of the invoices rather than printing so may be worth a chat with Gary with that thought.

We also use batch actions to create a CSV which can be uploaded to our postal service, Royal Mail, which again saves so much time rather than adding them one at a time. If people wanted to speak to Gary I am sure he could create something to print the packing labels, but that may be harder depending on all the options for label sheets, but it may be worth the ask and may not as much as some would think, and would benefit other users as well.

I thought there was an option to send out the queued emails automatically. We use a cron job once a day, at midday, and never touch the system.
User avatar
burt
Core Team
Posts: 4546
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: Can any part of your day to day be automated?

Post by burt »

Making a Cron job to send Queued Emails is literally one line of code in a file:

Code: Select all

<?php 
\Outgoing::sendEmail();
Save it shop-side in /ext/scripts/ or where-ever you want.
Then Cron to that file using whatever mechanism your hosting control panel provides.
I am not here to build for you.
I am here to build with you. Let's help each other.
User avatar
burt
Core Team
Posts: 4546
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: Can any part of your day to day be automated?

Post by burt »

MyGamesShop wrote: Tue Apr 21, 2026 12:10 am Have the search bar opened without the additional click in the Categories / Products page. Like it used to be.
Why not just change it to suit your particular need?

Alternatively;
Create a Hook which fires the collapse to an "open" state.
I am not here to build for you.
I am here to build with you. Let's help each other.
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: Can any part of your day to day be automated?

Post by Dan Cole »

@14Steve14 It would be great if there was a way to send a PDF of each of the invoices rather than printing so may be worth a chat with Gary with that thought.
John has a PDF Invoice add-on that can be purchased on his CartMart site and I bet he could tie it into your batch editor to do what you want. I'm not certain, but I think it was rewritten to use newer dependencies to make it more useful and easier to install.

Dan


Join The Code Co-op to get access to your library in the Code Co-op Forum
Post Reply