Most themes have a price.liquid or similarly-named template you can edit to control how prices display on your site.
The exact location highly depends on which theme you are using.
A Shopify store owner wants to display two prices on product pages: the regular price and a discounted member price. The goal is to encourage non-members to sign up by showing them the savings they could receive.
Current Setup:
Solution Provided:
A community member suggested using Liquid code with conditional logic based on customer tags:
The solution involves editing the price.liquid template file and adding custom code that checks for customer tags. A metafield (product.metafields.custom.member_price) can store the member pricing.
Resolution:
The original poster successfully implemented the code in their price.liquid template with additional styling in base.css. The member price displays at 90% of the regular price (multiplied by 0.9), showing labels like “REGULAR” and “MEMBER” to differentiate the two prices on product pages.
Most themes have a price.liquid or similarly-named template you can edit to control how prices display on your site.
The exact location highly depends on which theme you are using.