Pretty links cost you 150ms—here's the redirect math
The espresso machine hisses in a Brighton café, someone’s dragging a Notion window across two screens, and three browser tabs are timing out because a single affiliate link just fired four redirects before landing on Amazon.
Affiliate link cloaking plugins add 40–150ms per click—when the redirect tax is worth paying
Pretty affiliate URLs route through your server before landing, and every hop costs time.

Most WordPress affiliate plugins—Pretty Links, ThirstyAffiliates, AAWP—turn ugly Amazon URLs into branded paths like yoursite.com/recommends/tool-name. Clean, trackable, brandable. The trade: every click bounces off your server before reaching the merchant. That’s 40ms if your host is fast, 150ms if it’s shared hosting under load, and occasionally 500ms if a plugin decides to log the click to your database first.
The redirect itself is a 301 or 302 response. Lightweight. But your server still has to wake up, parse the request, query the database for the destination URL, fire any tracking pixels or analytics events the plugin configured, then send the redirect header. If your host throttles PHP workers or your caching layer doesn’t cover dynamic redirects, that click waits in line behind every other request. For affiliate content where the reader is already primed to buy, a half-second delay measurably tanks conversion. For evergreen posts where trust matters more than speed, the branded link often wins.
One faster path: use a dedicated link-management service like Rebrandly or Short.io with a custom domain and a geographically distributed edge network. The redirect happens at the CDN layer, not your WordPress server, shaving 60–100ms off the round trip. You lose some WordPress-native reporting, but you keep the branded URL and skip the PHP overhead.
TACTIC
Stop paying for analytics dashboards you glance at once a month
Most operators stack three analytics tools—Google Analytics for traffic, a heatmap service for scroll depth, and a custom event tracker for conversions—then wonder why the invoice runs £80 a month and the numbers never agree. The truth: you need three metrics. Open rate, click rate, revenue per send. Everything else is either redundant or so delayed it can’t inform a decision today. Strip your stack down to one platform that tracks those three, archive the rest, and bank the difference. If you can’t make a decision from a dashboard in under sixty seconds, you’re not paying for insight—you’re paying for the feeling of being data-driven.
FROM THE ARCHIVE
Newsletter ad networks pay net-60—here’s what that does to your runway
You send the newsletter in January, the sponsor pays the network in February, and you see the deposit in March. That’s net-60, and it’s standard across most programmatic ad networks serving newsletters. For operators running on thin margins or bootstrapping from revenue, two months of float can sink your planning. You’re covering hosting, software subscriptions, and freelance invoices today while waiting for income you earned eight weeks ago. Some networks negotiate net-30 if your list crosses 25,000 subscribers or you commit to quarterly minimums. Others never budge. Know the payment terms before you sign the insertion order, and model your cash flow around the delay—not the invoice date.
WORTH READING
WordPress transient bloat turns temporary data into a permanent drag
Transients are WordPress’s way of caching temporary data—API responses, widget output, plugin settings that expire after an hour or a day. They live in the wp_options table, and they’re supposed to delete themselves when they expire. In practice, most plugins write transients faster than the cleanup job runs, and expired rows pile up by the thousands. Your database grows, queries slow down, and backups take longer. Some hosts throttle sites once wp_options crosses 5,000 rows. The fix: a monthly purge using WP-CLI or a dedicated plugin like Transients Manager. Check your row count first—if you’re over 3,000 and half are expired transients, you’re already paying the performance tax.
Know someone who would like this? Forward today’s email—every operator we reach is one closer to running an online business with a little less friction.