Change $0 to Call For Pricing

Change $0 to Call For Pricing

GSF2017
Visitor
1 0 0

Hi, I would like to change the pricing on our items listed as $0 to "Call For Pricing." We are using the Ella theme and I cannot find the area that says product.liquid as I have found in other recommendations. Thank you!

Replies 3 (3)

TheUntechnickle
Shopify Partner
182 18 19

Hey @GSF2017,

Here's how you can solve this, in case you're not able to follow the steps please share your collaborator code in DM and I'll send you a collaborator request and get this resolved in no time.

In your Shopify admin:

  1. Go to Online Store > Themes
  2. Click on "Actions" > "Edit code"

Look for files with these names (they're the most likely locations for price-related code):

  • snippets/product-price.liquid
  • snippets/prices.liquid
  • sections/product-template.liquid

Once you find the appropriate file, you'll need to look for code that handles price display. It might look something like this:

 

{% if product.price == 0 %}
   {{ product.price | money }}
{% endif %}

 

 

or

 

<span class="price">
   {%- if product.price_varies -%}From{%- endif -%}
   {{ product.price | money }}
</span>

 

 

 

You'll want to modify it to something like this:

 

 

{% if product.price == 0 %}
   Call For Pricing
{% else %}
   {{ product.price | money }}
{% endif %}

 

 

You might need to add certain styling to the "Call for Pricing" text using CSS. 

Hope this helps.

Cheers!
Shubham | hello@untechnickle.com

Oh, and there’s something brewing behind the scenes that’s redefining customer experience. Curious? It’s time to Revize your store. Don’t say we didn’t warn you. 

GSF20171
Tourist
17 0 3

Hello, Shubham! I would be greatly appreciative if you would be able to help me out as a collaborator and fix this issue for me. Please message me if you're able to. Thanks so much!

GSF20171
Tourist
17 0 3

Thanks so much, just sent you an email. The email is info@goldenstatefloors.com