Add Member Only Pricing to PDPs
Liquid Code to Output Member Price
<div class="member-price-block">
{%- comment -%}
Calculate the member price by multiplying the product's base price by a discount factor.
The '0.8' multiplier represents 20% off (e.g., 0.8 * $100 = $80).
IMPORTANT: This is a placeholder — replace 0.8 with the appropriate value for your discount.
For example, use 0.75 for 25% off, 0.7 for 30% off, etc.
{%- endcomment -%}
{% assign member_price = product.price | times: 0.8 | money %}
{%- comment -%}
Output the formatted member price. You can style this to match your theme.
{%- endcomment -%}
<p class="member-price" style="color: #008060; font-weight: bold;">
Member Price: {{ member_price }}
</p>
</div>Option 1: Add via Theme Editor (Custom Liquid Block)
Steps:
Option 2: Edit the Product Template in Code
Steps:
How the Liquid Math Works
Adjusting the Discount
Discount Amount
Multiplier

Alternative Implementation for Products with Differently Priced Variants
Option 1: Add via Theme Editor (Custom Liquid Block)
Option 2: Insert Directly into Theme Code

Optional Add-On: Membership CTA (both implementations)
Last updated
Was this helpful?
