Docs Plan management Hosted billing

Hosted billing

Hosted billing allows you to create highly detailed and customizable billing pages for your customers, enabling you to show in-depth billing data on a personalized page tailored to your brand’s unique needs.

Key features

  • Display your customer’s current plan and available upgrade options with core features.
  • Provide detailed usage information, showing how customer activities relate to pricing.
  • Add customizable banners and specific information to enhance communication.
  • All within an intuitive drag-and-drop editor, making it easy to create and manage these pages without technical expertise.

To access your Hosted Billing editor, navigate to Your app -> Plans -> Hosted Billing in the left navigation bar.

After setting up your hosted billing pages, you can easily integrate them into your app by following the instructions here.

Drag & drop pages

Hosted billing provides two distinct pages that you can add to your app to display billing and plan details to your customers, all created with an intuitive and easy-to-use drag and drop editor:

Plan list

Allow your customers to view available plans, explore their features, highlight the benefits of their current plan, and guide them to upgrade to new plans that may better suit their needs.

Hosted billing plan list

Display and presentation:

  • Flexible display options: Showcase all, public, or custom plans to suit different customer segments.
  • Text customization: Enhance readability and presentation with adjustable text styles for names, descriptions, and prices.
  • Highlight trial periods: Attract new users by prominently displaying trial days as a feature.
  • Custom columns: Tailor the information displayed by overriding default columns.

Engagement and promotion:

  • Promote key plans: Highlight recommended plans using the “recommended” custom field to guide customer choices.
  • Custom call-to-action: Increase engagement by modifying the call-to-action with the “buttonLabel” custom field.

These features provide opportunities to optimize the display and marketing of your plans, enhancing customer engagement and decision-making.

Account summary

Provide your customers with a detailed overview of their account, including billing history, current plan details, usage statistics, and important account information.

Hosted billing account summary

Subscription management:

  • Subscription summary: Display detailed information about the customer’s current subscription plan.
  • Usage metric: Provide insights into the customer’s usage, highlighting any relevant metrics.
  • Limit metric: Display limit usage metrics related to the customer’s plan.

Customizable components:

Hosted billing generic components
  • Banners: Add informational banners to highlight important updates or messages.
  • Cards: Display customer information flexibly, allowing you to present the content in a way that best suits your needs.
  • Dividers: Insert dividers to separate different sections for better readability.
  • Grids: Utilize grid layouts to organize information systematically.

These features and customizable blocks ensure that customers have a clear, detailed, and well-organized view of their account, enhancing transparency and user experience.

Selecting pages and customers

Hosted billing page select

You can easily switch between pages and select customers to see how their plans are displayed and what the page looks like for each specific customer.

Conditional rendering

You can set up conditions to render blocks based on specific criteria, ensuring they are displayed only when all conditions are met.

To set up conditions, select your block and click Manage conditions. From there, you can add as many conditions as you need:

Hosted billing conditional rendering

Once the conditions are set and met, the block will appear on the page for your customer.

Using liquid variables

You can also use Liquid variables to enhance your text and CTAs, making them more dynamic and impactful.

Liquid variables are available for the following objects:

  • customer
  • subscription
  • plan
  • plans
  • features

Each of these objects corresponds directly to the app API response.

Simply add a Liquid variable to any text field in the Hosted billing editor, and it will automatically populate on the specified card:

Hosted billing liquid variables

Multi-language & Multi-currency

Mantle’s billing supports both multi-language and multi-currency functionality so that you can save the time and energy translating your billing pages you present to your customers and the currencies they are billed in.

The currency in which customers are billed is set in their shop settings. When integrated with Mantle billing, this currency is pulled in and displayed with current fx rates, ensuring your customers see the most up-to-date pricing conversions. However, charges are always settled in USD.

Similarly, for multi-language support, the language set in the customer’s shop settings will be pulled in and used to translate your billing pages to their chosen language.


Add to your app

To take advantage of Hosted billing, you first need to be set up with Mantle billing. Once that’s done, simply add this code to your app:

const { createHostedSession } = useMantle();
...
const session = await createHostedSession({ type: 'plans' });
open(session.url, "_self");

And that’s it! Everything you’ve set up in your Hosted Billing editor will now display on the page you’ve configured in your app.