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.
By default, your Net Terms checkout button shows the text “Checkout with Net15”, “Checkout with Net30”, “Checkout with Net45”, or “Checkout with Net60” depending on which Net Terms tag has been applied to a customer’s account. This text can be customized by making small edits to your theme’s code.
- In the Online Store section of your Shopify admin, click the 3 dots next to your current theme and click Edit code.
- In the search bar in the top left corner, search for the saw_netterms.liquid file and open it.
- 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 %} - 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"/>
- Click Save to publish your changes.
- 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.