Shipping settings are where a store quietly drifts. A zone gets duplicated during a redesign, a flat rate that should have moved to free shipping never did, two methods carry almost the same name, and a cost that made sense two years ago is now wrong. Nobody opens the shipping screen unless something breaks, so the mess just sits there.
This walks your zones for you and hands back a plain list of what looks wrong. Reading first, fixing second, and only the fixes you sign off on.
Audit the shipping setup on this WooCommerce store. Work in two passes and donot change anything in the first one.
First pass, reads only: list every shipping zone in order, then for each zonepull its locations and the methods inside it, and for each method read itstitle, its cost, and whether it is enabled. Give me back one table per zone,and flag anything that looks off: duplicate or near-duplicate methods, a zonewith no methods at all, a disabled method that looks like it should be live,or a cost that looks stale. Change nothing.
I will tell you which fixes to make. Only after I approve, update just thosemethods, a few at a time, and show me each batch before it saves. Do notcreate or delete any zone or method, only edit the ones I point at. At theend, list every method you changed with its old and new settings.Why this is safe to run
The entire first pass is reads. Listing zones, reading each zone, listing its methods, and reading each method all write nothing, so the audit table lands in front of you before a single setting moves.
The fix pass can only reach one ability, updating an existing shipping method, and even that stays off until you enable it. It cannot create a zone, delete a zone, or add or remove a method, because those abilities are not part of this recipe. Every change goes out in small batches you see first, each call is checked against the capability of the user you bound the agent to, and every write lands in the Activity Log with the method it touched. If a cost comes out wrong, the log tells you exactly which method to reopen.
Already connected? You do not have to paste this at all. Ask your agent for the “audit and rationalize shipping zones and methods” recipe, or just describe the job, and it runs the same two-pass flow on your own store.