Hi, I would like to remove or change the pricing range on the featured collection in the Be Yours Theme. Or change it so it looks like this:
from $45.00 (or whatever price it is).
Thank you,
Claire
Hi, I would like to remove or change the pricing range on the featured collection in the Be Yours Theme. Or change it so it looks like this:
from $45.00 (or whatever price it is).
Thank you,
Claire
It’s really unfortunate that a $300 “high end” theme like Be Yours does not have a native option to change the price range of the product card from “$45 - $80” to “From $45”. It is available on other themes in the theme settings:
What you can do is go to the code editor and search for it, and see what and where it’s stored:
Hi @Claire_Pioupiou,
Please send the website link, I will check it for you
Hi @Claire_Pioupiou,
I checked but didn’t find what you want to change. Can you explain more about it? Is it in the product price?
Hi @Designerpen,
Totally hear you — setting up a Shopify store can feel like a lot at first, especially when you see terms like meta tags, HTML, JavaScript, SEO. The good news is, you don’t need to master all of that right away to get your shop running smoothly.
Here’s a practical way to move forward step by step:
1. Focus on the essentials first
Get your products listed with clear titles, descriptions, and good photos.
Make sure payments and shipping are set up correctly.
2. SEO and meta tags — keep it simple
In each product page in Shopify, scroll down to the “Search engine listing” section.
Just make sure your product title and description look natural and customer-friendly — that’s often enough for a strong start.
3. Apps and themes handle a lot for you
4. Grow as you go
In short: get the basics live first, don’t worry about perfect SEO or HTML yet. Shopify is designed so you can start selling without deep tech skills.
Would you like me to outline a “launch checklist” (non-technical) so you can feel confident you’ve covered the key things before promoting your store?
Hi @Claire_Pioupiou,
Please go to Actions > Edit code > snippets > price.liquid file. Please send me the code, I will check and guide it.
Hey @Claire_Pioupiou,
In order to change the format of the price
From
$59.00 USD - $105.00 USD
To
From $59.00 USD
requires to take a look into your theme file.
By any chance are you able to share the price.liquid code or share the collab code so that I can take a look for you.
Thanks
{%- liquid
if use_variant
assign target = product.selected_or_first_available_variant
elsif placeholder
assign target = null
else
assign target = product
endif
assign compare_at_price = target.compare_at_price
assign price = target.price | default: 1999
assign available = target.available | default: false
assign price_min = product.price_min
assign price_max = product.price_max
assign money_price = price | money
assign money_price_min = price_min | money
assign money_price_max = price_max | money
if settings.currency_code_enabled
assign money_price = price | money_with_currency
assign money_price_min = price_min | money_with_currency
assign money_price_max = price_max | money_with_currency
endif
-%}
{%- capture formatted_money_price -%}
{%- if target == product and product.price_varies -%}
{%- if compare_at_price > price and available -%}
{%- capture from_price -%}
{{ money_price }}
{%- endcapture -%}
{{ ‘products.product.price.from_price_html’ | t: price: from_price }}
{%- else -%}
{{ money_price_min }}
{{ money_price_max }}
{%- endif -%}
{%- else -%}
{{ money_price }}
{%- endif -%}
{%- endcapture -%}
Sure, I’ll a “launch checklist”
Thank you for your time and effort
Thanks a lot. I’ll try this change.