Skip to main content

Customizing your Net Terms checkout button

Written by Emily
Updated over 4 weeks ago

These are advanced instructions that involve editing your theme's code. If you're not comfortable with coding, contact our support team for assistance before making any changes.

This article is only relevant if you installed Wholesale Hub before February 5 2026 and are using the theme integration version of our app.

By default, your Net Terms checkout button is based on the customer's Net Terms tag (for example, net30). You can change the button text by editing your theme code.

  1. In the Shopify admin, go to Online Store → Themes. On your current theme, open the menu, then click Edit code.

  2. In the search bar in the top left corner, search for the saw_netterms.liquid file and open it.

  3. Locate the block of code for the Net Terms tag you want to customize. For example, if you want to edit the text of the “Checkout with Net30” button, the block of code you’ll be making edits to is on lines 43-50:

     {% if customer.tags contains 'net30' %}
    <p>
    {% comment %} terms go here {% endcomment %}
    Checkout using Net Terms
    </p>
    <input ##{{net_button_attributes}} data-redirect="/pages/net-orders-thank-you" value="Checkout with Net30"/>
    <br>
    {% endif %}
  4. To change the checkout button text, edit the text in the value attribute with your custom text. For example, if you’re editing the checkout button for the Net30 tag, this text is found at the end of line 48 after the value attribute:

    <input ##{{net_button_attributes}} data-redirect="/pages/net-orders-thank-you" value="Checkout with Net30"/>
    Net30 value attribute.png
  5. Click Save to publish your changes.

  6. To test your custom text, log in with a test account tagged with the correct Net Terms tag, and add a product with a wholesale discount to the cart. The Net Terms checkout button will now show your custom text.

Did this answer your question?