Routing the Update payment link to Frictionless Payments
Learn how to override your Subscription Manager theme so the “Update payment” link sends customers to Frictionless Payments.
Out of the box, the Subscription Manager decides where “Update payment” goes by checking your platform settings in order, stopping at the first match:
- An external payment URL, if both
external_payment_enabledandexternal_payment_urlare set. This is checked first, so it applies on any platform — including Shopify. - Shopify’s customer accounts interface, if you’re on Shopify New Accounts.
- Ordergroove’s Shopify billing flow, if you’re on Shopify without New Accounts.
- Nothing at all, if you’re not on Shopify and no external payment URL is set. The conditional has no final
else, so the link doesn’t render.
If you’re set up with Frictionless Payments, you’ll want the link to bypass that logic and open your Frictionless Payments page instead.
Before you start
You must already be configured with Ordergroove’s Frictionless Payments integration before you apply this override. The override only changes where the link points — it does not enable the integration. If you’re not sure whether Frictionless Payments is set up for your account, check with your Ordergroove contact first.
You’ll also need a Subscription Manager v25 theme and access to the Advanced editor.
Apply the override
Open the Subscription Manager page in Ordergroove and find the theme you want to change. We recommend using a draft theme rather than your live theme, so you can preview the change before it reaches customers.
In the Theme designer, switch to the Advanced editor tab and find the order-summary/payment-details.liquid file under Views. Inside the {% if order.status != 'SEND_NOW' %} block, find the conditional that resolves the payment URL:
The exact code and line numbers vary by template version and by the customizations made to your theme. Older v25 themes render the link inline with an <a> element instead of including order-summary/payment-link, in which case you may need to make further customizations. Replace the whole conditional either way.
Replace that entire block with:
payment_url is a relative path, so it resolves against your storefront domain. Save the changes to the theme.
Verify the change
- Load the Subscription Manager as a customer.
- Select “Update payment”. A new tab opens at
/apps/subscriptions/payment-update?source=smon your storefront domain, showing the Frictionless Payments page. - Complete a payment update, then return to the Subscription Manager and confirm the subscription’s payment method reflects the new card.
Use the editor’s preview functionality to check the change before it goes live. When you’re ready, publish the theme.