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/
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):
custom, key: club_price, type: Price) in Shopify Adminproduct.liquid to display the club price conditionallyApp-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.
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/
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!
Thanks, big help!