OneWebDesk

WooCommerce Checkout Checklist

Check the essentials of payment, shipping and cart flow.

Before launching a WooCommerce store, confirm your checkout can actually take money. If the payment gateway isn't approved, shipping is mispriced, or notification emails land in spam, revenue quietly leaks away. This checklist groups the essentials — payments, shipping, tax, cart UX, and legal/ops — so gaps are easy to spot.

Tick each item and a readiness score updates in real time. Use it for a new launch, or as a regression check after swapping a payment gateway or updating a theme/plugin. Everything is evaluated in your browser and nothing is sent anywhere.

Readiness 0% (0/13)
Not ready yet. Check the unchecked items first.

Payments

Shipping

Tax

Cart & UX

Legal & ops

Common traps that hurt checkout conversion

A feature "working" is not the same as protecting revenue. These points break most often.

  • Forced sign-up: blocking guest checkout drives drop-off at the final step.
  • Long forms: extra fields and steps raise abandonment.
  • Untested mobile: keypad types and tap targets often look fine only on desktop.
  • Tax display mismatch: prices that differ between product page and checkout erode trust.

What to test before launch

Right before going live, running the real transaction flow end to end is the surest check.

  1. In test/sandbox mode, verify the gateway through approval → cancel → partial refund like a real order.
  2. Vary cart price and weight to confirm free-shipping thresholds and surcharges apply as intended.
  3. On order completion, check both admin and customer emails reach the inbox, not the spam folder.

Legal and operational readiness

Stating withdrawal/refund terms and adding a terms-acceptance checkbox are baseline safeguards against disputes. Define stock tracking and out-of-stock behavior to prevent overselling and undelivered orders. Confirm your checkout page has no HTTP resources with the mixed content check, and review the underlying WordPress security with the WordPress hardening checklist.

Where each checklist item lives in WooCommerce

Most checklist items stall not because they're hard, but because you don't know where the setting is. Here's the admin screen and key option behind each group (WooCommerce 8.x / 9.x).

GroupSettings pathKey option
PaymentsWooCommerce → Settings → PaymentsLive API keys, test mode off, currency (General tab)
ShippingSettings → Shipping → ZonesPer-zone flat/free rates, free-shipping minimum, product weight/dimensions
TaxSettings → General + Settings → TaxEnable taxes, prices entered inclusive/exclusive, cart/checkout display
Cart UXSettings → Advanced + Accounts & PrivacyAllow guest checkout, cart/checkout page mapping, terms page
EmailsSettings → EmailsNew order (admin) & processing (customer) enabled, from-address
StockSettings → Products → InventoryManage stock, hide out-of-stock, low-stock threshold & alerts

Worked example: a leaky free-shipping threshold

Let's trace the most common revenue leak. You enabled "free shipping over $50," yet some customers still get charged shipping. Here's the diagnosis path.

  1. Add $48 to the cart and apply a $5 off coupon → subtotal becomes $43.
  2. If your free-shipping rule uses "minimum order amount" with the coupon option set to after coupon, the cart now falls below the threshold and shipping is charged.
  3. Conversely, with $52 in the cart but tax shown exclusively, some gateways evaluate the threshold against the tax-inclusive total, throwing the comparison off.

So the same "$50" behaves differently depending on whether coupons and tax count toward the threshold. Make your policy wording match the actual option, and test the ±$1 band around the threshold directly.

Common pitfall

The most frequent mistake is shipping a gateway that's still in test mode. Sandbox keys make payments look "successful" while settling nothing. If day-one revenue is zero, this is almost always why — run one small real charge with your own card right after launch and confirm it appears in the gateway dashboard.

Frequently asked questions

Is HTTPS only on checkout enough?
No. Force site-wide HTTPS — it avoids mixed-content warnings, and letting the gateway tokenize card data keeps your PCI scope small.
Why aren't my WooCommerce emails sending?
The default PHP mail() lacks authentication and is easily flagged or blocked. Use an SMTP sending plugin and test both admin and customer notifications.
Should I enable guest checkout?
Strongly recommended for conversion. Forced registration is a leading cause of abandonment. Let people pay as guests and offer optional account creation afterward.
Should tax be inclusive or exclusive?
Match your selling regions and customer expectations, but the key is consistency across product, cart and checkout. Mismatched display makes prices look like they changed.
Is my checklist data stored?
No. Your checked state stays in the browser only and is never transmitted or saved.

Related tools