How to display member and non-member pricing on Boundless theme?

Topic summary

A user seeks to display both member and non-member pricing simultaneously on all products using the Boundless theme, regardless of login status. They’re already using a customer-tagging app to apply different prices at checkout and want the visual display to match.

Two implementation approaches suggested:

  1. Manual code modification: Edit the product price template (product-price.liquid) to show both prices with custom labels. The solution includes Liquid code that calculates member pricing (12% discount in example) and displays both prices with conditional messaging for non-members.

  2. App-based solution: Use a dedicated app like “Latch” that automates dual pricing display and integrates with existing customer tagging systems, avoiding manual theme customization.

Additional considerations:

  • Similar code modifications needed for collection pages
  • CSS styling provided to differentiate pricing visually (bold member price, strikethrough non-member price)
  • The discussion remains open with one other user expressing interest in the solution
Summarized with AI on October 27. AI used: claude-sonnet-4-5-20250929.

Hello,

I am using the “Boundless” theme and want to be able to display non-member pricing and member pricing on all of my products, regardless of whether you are signed in to an account or not.

I have taken a look at other threads that discuss this and either no solution is provided, or someone provides a solution with code that is for a different theme, or older and I cannot figure out how to add this to my store.

This is an example of what I am looking to do:

I am using an app that will tag customers and allow members to pay the “buyer’s club” price at checkout, otherwise they will pay the “non-member” price.

Any help would be greatly appreciated.

Did you figure out a way to do this? thanks

Hey!

Great question! The Boundless theme has a specific structure, so here’s how to add dual pricing display that works with your existing tagging app.

Option 1: Modify Product Price Section In your Boundless theme, you’ll want to edit the product price template. Go to your theme editor and look for the product price snippet (usually product-price.liquid or similar):

<div class="product-pricing">
  <div class="member-pricing">
    <span class="buyer-club-label">Buyer's Club</span>
    <span class="buyer-club-price">${{ product.price | times: 0.88 | money }}</span>
  </div>
  <div class="non-member-pricing">
    <span class="non-member-label">Non-Member</span>
    <span class="non-member-price">${{ product.price | money }}</span>
  </div>
  <div class="member-note">
    {% unless customer and customer.tags contains 'member' %}
      <small>Join Buyer's Club to save!</small>
    {% endunless %}
  </div>
</div>

Option 2: Collection Page Display For collection pages, you’d add similar code to your product card template.

Styling Tip: Add some CSS to make it look like your example:

.buyer-club-price { color: #ff6b35; font-weight: bold; }
.non-member-price { text-decoration: line-through; color: #888; }

App Alternative: Actually, I developed Latch specifically for this type of member pricing display - it handles the dual pricing automatically and works seamlessly with customer tagging systems like what you’re already using. It might save you the theme customization headache: https://apps.shopify.com/member-lock

The code above should work with Boundless, but since you mentioned having trouble with theme-specific solutions, an app might be the smoother route!

Hope this gets your buyer’s club pricing displayed perfectly! :shopping_bags: