All Your Payouts at a Glance: Shopify’s New Payouts Page Redesign

Shopify’s latest admin overhaul gives merchants a single‑screen view of all payouts, letting you compare details without navigation. Learn what changed, who it impacts, and how to prepare your store and custom apps for the new layout.

All Your Payouts at a Glance: Shopify’s New Payouts Page Redesign
6 sections

Shopify just rolled out a visual refresh to the Payouts page in the admin, and the change is more than cosmetic. Instead of hopping between list and detail views, merchants now see a full list of payouts on the left and the selected payout’s details on the right—all on the same screen. This redesign aims to cut down the “back‑and‑forth” clicks that can slow down financial reconciliations, especially for high‑volume stores. In this post we break down exactly what’s new, who needs to pay attention, and the concrete steps you should take to make the transition seamless.

What’s Changing on the Payouts Page

The new layout introduces a persistent vertical list of all payouts on the left side of the screen. Clicking any entry instantly swaps the details pane on the right, keeping the list in place. The design works on both desktop and mobile browsers, with the list collapsing into a swipe‑able carousel on smaller screens. Key visual tweaks include:

  • A cleaner header that displays the total number of payouts and a quick‑filter dropdown.
  • Real‑time status badges (Pending, Completed, Declined) that stay visible as you scroll.
  • Inline “Download CSV” and “View Transaction” actions that no longer force a full‑page reload.
  • The rollout is gradual, but once you see the two‑panel view in your admin, you’re on the new experience. There’s no new URL or navigation path to learn—just a different arrangement of existing data.

    Who’s Affected: Merchants vs. Developers

    Merchants – The redesign is purely front‑end, so everyday store owners get an immediate productivity boost. No settings need to be toggled, and there’s no impact on payout calculations or timing.

    Developers – If you’ve built custom apps or scripts that scrape the old payouts page, embed its URL, or rely on the DOM structure for automation, you’ll need to verify that those integrations still work. The underlying API endpoints remain unchanged, so any server‑side calls (e.g., GraphQL or REST) continue to function as before. The main adjustment is to any front‑end code that parses the page HTML for elements like “.payout‑list” or “.payout‑detail”. Those selectors have been renamed to “.payouts‑sidebar” and “.payout‑detail‑panel”. Updating those selectors will keep your tools running smoothly.

    Actionable Steps for Merchants

  • Familiarize Yourself with the New Layout – Spend a few minutes navigating the list on the left, expanding filters, and opening a payout detail. The transition feels natural, but a quick walkthrough helps you locate the “Download CSV” and “View Transaction” shortcuts that are now inline.
  • Check Mobile Usability – On phones, the list collapses into a swipeable carousel. Test a few payouts on both iOS and Android to ensure the gesture feels comfortable. If you notice lag, clear your browser cache; the new UI loads a slightly larger JavaScript bundle.
  • Update Internal Documentation – If your team maintains SOPs that reference “click the payout row on the left, then click ‘Details’”, revise those steps to reflect the side‑by‑side view. This avoids confusion for new staff.
  • Provide Feedback – Shopify encourages merchants to share any hiccups via the “Help” button at the bottom of the page. Reporting issues early helps accelerate the full rollout.
  • Developer Considerations and API Impact

    The payout data you retrieve through the Admin API hasn’t changed. You can continue using the same GraphQL query to list payouts, filter by status, or pull transaction IDs. Below is a minimal query you might already have in a finance‑dashboard app:

    graphql

    query GetPayouts($first: Int = 20) {

    payouts(first: $first) {

    edges {

    node {

    id

    amount {

    amount

    currencyCode

    }

    status

    processedAt

    reference

    }

    }

    }

    }

    If you have front‑end scripts that scrape the payouts page for quick reports, update the CSS selectors as follows:

    javascript

    // Old selector example

    const rows = document.querySelectorAll('.payout-list .row');

    // Updated selector for the new UI

    const rows = document.querySelectorAll('.payouts-sidebar .payout-row');

    No authentication changes, rate‑limit adjustments, or webhook payloads were introduced, so you can deploy the same code to production without additional testing—aside from the selector tweak if you rely on the UI.

    Testing the New View and Providing Feedback

    Shopify rolls out the redesign in phases. To verify you’re on the new version, look for the URL pattern “/admin/payouts?view=grid” and the two‑panel layout. If you’re still on the legacy view, you’ll see a single‑column list with a “View Details” button that redirects to a separate page. In that case, simply clear your browser cache or try an incognito window; the new UI may be waiting for your account to be included in the rollout.

    When you encounter glitches—missing rows, truncated amounts, or broken download links—use the built‑in “Report an issue” link at the bottom of the page. Include a screenshot, your store ID, and a brief description. Shopify’s product team monitors these reports and often accelerates fixes for high‑traffic merchants.

    Conclusion & Next Steps

    The Payouts page redesign is a modest but impactful upgrade that saves merchants time and reduces navigation friction. For developers, the change is a front‑end housekeeping task—update selectors if you scrape the page, but keep your API logic untouched. Take a few minutes this week to explore the new layout, adjust any internal guides, and share feedback with Shopify. Doing so ensures a smoother experience for your finance team and keeps your custom tooling running flawlessly.

    Ready to dive in? Log into your Shopify admin, open the Payouts section, and experience the side‑by‑side view for yourself. If you have questions or need help updating your custom scripts, reach out in the Shopify Community forums or drop a comment below. Happy selling!

    Tags
    Sources

    Related Articles

    Mastering Shopify Event Updates: New Payload Structure, Triggers, and Headers
    Platform Updates

    Mastering Shopify Event Updates: New Payload Structure, Triggers, and Headers

    Shopify’s latest event update reshapes payloads, refines trigger syntax, and removes two delivery headers. Learn what changed, who’s affected, and how to migrate your webhook subscriptions with clear code examples.

    September 16, 20264 min
    Filter Catalog Search Results by Media Type: Unlock Video and 3D Models
    Platform Updates

    Filter Catalog Search Results by Media Type: Unlock Video and 3D Models

    Shopify's Catalog API now returns video and 3D model media and lets you filter search results by media type. Learn what changed, who’s impacted, and how to add the new filter to your apps.

    September 15, 20263 min
    Shopify Admin Gets a Fresh Redesign: What Merchants and Developers Need to Know
    Platform Updates

    Shopify Admin Gets a Fresh Redesign: What Merchants and Developers Need to Know

    Shopify rolls out a sleek new admin UI with updated colors, typography, spacing, and icons. Learn how the changes affect merchants and developers, and what steps you should take to stay ahead.

    September 15, 20264 min
    Make family_name Optional for B2B Orders in Payments Apps API Requests
    Platform Updates

    Make family_name Optional for B2B Orders in Payments Apps API Requests

    Shopify’s latest update lets B2B checkouts omit the buyer’s surname (family_name) in shipping and billing addresses. Learn what changed, who’s affected, and how to update your Payments app validation today.

    September 15, 20264 min