I’m using the Live Product Options app in shopify, a lot of my products are “$0” until options are added in the product page. I’ve made the actual products themselves $0 in shopify, value is only added when options from the app are selected in the product. Is there a way that I can change the product cards prices to say “From $20” (for example), instead of them all just saying “$0”? I hope this makes sense.
Hi @dzeyener ,
Yes, this is a pretty common setup when using Live Product Options or other custom options apps (Infinite Options, Bold, etc.), where the base product is $0 and the real price only comes from the options.
The problem is that Shopify’s collection pages and product cards only read the actual product.price (or product.price_min / product.price_max), so everything shows $0.
Ways you can fix it
Option 1: Hard-code a “From $X” label with metafields
Create a product metafield (ex: minimum_price) and set your “From” price for each product (20, 50, etc.).
In your theme’s product card template (usually snippets/product-card.liquid or similar in Dawn/Prestige/etc.), replace the default price output with something like:
Yes — this makes perfect sense, and it’s a common scenario when using Live Product Options or similar apps that add pricing dynamically. The key is that Shopify by default displays the product’s base price ($0 in your case) on product cards, because it doesn’t know about the app’s options.
Here’s how you can handle it in Dawn 15.4.0:
Use “Starting at” Price via JavaScript
You can dynamically replace the $0 on product cards with a “From $X” label. For example:
It is a very common setup when using Live Product Options, By default, Shopify shows the base price in collection/products. you can use a metafield to display a “Starting Price” .
Create a product metafield (For example: starting_price).
Enter the starting price for each product in that metafield.
To display it on Product page, please follow below:
Go to Online Store > Themes > Edit code.
Open your theme’s Sections or Snippets folder
Find the file main-collection-product-grid.liquid, card-product.liquid, or product-grid-item.liquid (depends on your theme).