How to add another pricing in product page

Topic summary

A user seeks to display dual pricing on product pages—specifically a standard price alongside a “Club Price” for members, similar to a reference website they provided.

Solutions Offered:

  • Custom Code Approach: Modify Liquid templates by adding metafields or tags to store club pricing, then conditionally display the discount for club members during checkout.

  • Metafield Implementation (No App):

    • Create a custom metafield (namespace: custom, key: club_price, type: Price) in Shopify Admin
    • Add club prices to individual products via metafields
    • Insert Liquid code in product.liquid to display the club price conditionally
    • Optional CSS styling for visual distinction
  • App-Based Solution: Use third-party apps like Custom Pricing by Wholesale Club or Bold Custom Pricing for automated handling.

One responder offered direct implementation assistance via DM. The original poster confirmed this was their desired solution and expressed gratitude for the guidance provided.

Summarized with AI on October 30. AI used: claude-sonnet-4-5-20250929.

How can I add another pricing on my product page like in the reference website where it shows another pricing with the Club price

Here’s my store url: https://u1130y-zj.myshopify.com/

1 Like

You can do this by modifying your liquid code. Add a tag or a metafield for club discount. let the customers add to cart, apply the discount if the customer is a club member. Let me know if you need help implementing this.

Hi, that is exactly what I want to do. I need help implementing this. Could you assist me?

Absolutely, sent a meeting link in DM. Chat soon!

Option 1: Use Metafields (No App Needed)
Go to Shopify Admin → Settings → Custom Data → Products → Add Definition:

Namespace: custom, Key: club_price, Type: Price

Assign Club Price in Product Metafields.

Edit Product Page Code (product.liquid):

{% if product.metafields.custom.club_price %}

Club Price: {{ product.metafields.custom.club_price | money }}

{% endif %} Style It (Optional, in theme.css):

.club-price { color: #ff5733; font-weight: bold; }
Option 2: Use an App
Apps like Custom Pricing by Wholesale Club or Bold Custom Pricing can handle this automatically.

Let me know if you need help implementing it!

1 Like

Thanks, big help!