Be yours - change pricing range

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?

this is when I have a collection showed up.
See in printscreen here

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

  • Most of the technical stuff like code, speed, or structured data is already built into Shopify themes. You don’t need to code unless you want something very custom.

4. Grow as you go

  • Once your store is live and running, then you can learn more about SEO or install apps that make it easier (without touching code).

:backhand_index_pointing_right: 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 -%}

{%- comment -%} Explanation of description list: - div.price__regular: Displayed when there are no variants on sale - div.price__sale: Displayed when a variant is a sale - div.price__availability: Displayed when the product is sold out {%- endcomment -%}
{%- if product.quantity_price_breaks_configured? -%} {%- if show_compare_at_price and compare_at_price -%} {%- unless product.price_varies == false and product.compare_at_price_varies %}
{{ 'products.product.price.regular_price' | t }}
{% if settings.currency_code_enabled %}{{ compare_at_price | money_with_currency }}{% else %}{{ compare_at_price | money }}{% endif %}
{%- endunless -%} {%- endif -%}
{{ 'products.product.price.regular_price' | t }}
{%- capture formatted_money_price_min -%} {{ money_price_min }} {%- endcapture -%} {%- capture formatted_money_price_max -%} {{ money_price_max }} {%- endcapture -%} {{- 'products.product.volume_pricing.price_range_html' | t: minimum: formatted_money_price_min, maximum: formatted_money_price_max -}}
{%- else -%}
{{ 'products.product.price.regular_price' | t }}
{{ formatted_money_price }}
{%- endif -%}
{%- unless product.price_varies == false and product.compare_at_price_varies -%}
{{ 'products.product.price.regular_price' | t }}
{% if settings.currency_code_enabled %}{{ compare_at_price | money_with_currency }}{% else %}{{ compare_at_price | money }}{% endif %}
{%- endunless -%}
{{ 'products.product.price.sale_price' | t }}
{{ formatted_money_price }}
{%- if available and product.selected_or_first_available_variant.unit_price_measurement -%}
{{ 'products.product.price.unit_price' | t }}
{% if settings.currency_code_enabled %}{{ product.selected_or_first_available_variant.unit_price | money_with_currency }}{% else %}{{ product.selected_or_first_available_variant.unit_price | money }}{% endif %} /  {{ 'accessibility.unit_price_separator' | t }}  {%- if product.selected_or_first_available_variant.unit_price_measurement.reference_value != 1 -%} {{- product.selected_or_first_available_variant.unit_price_measurement.reference_value -}} {%- endif -%} {{ product.selected_or_first_available_variant.unit_price_measurement.reference_unit }}
{%- endif -%}
{%- if show_badges -%} {%- if target.available == false -%} {{ 'products.product.sold_out' | t }} {%- elsif target.compare_at_price > target.price -%} {%- assign on_sale_text = 'products.product.on_sale' | t -%} {%- if on_sale_text != blank and sale_badge_basis != 'disable' -%} {%- case sale_badge_basis %} {%- when 'text' -%} {{ 'products.product.on_sale' | t }} {%- when 'percentage' -%} –{{ target.compare_at_price | minus: target.price | times: 100.0 | divided_by: target.compare_at_price | round }}% {%- when 'value' -%} –{% if settings.currency_code_enabled %}{{ target.compare_at_price | minus: target.price | money_with_currency }}{% else %}{{ target.compare_at_price | minus: target.price | money }}{% endif %} {%- else %} {%- if product.variants.size == 1 -%} –{{ target.compare_at_price | minus: target.price | times: 100.0 | divided_by: target.compare_at_price | round }}% {%- else -%} {{ 'products.product.on_sale' | t }} {%- endif -%} {%- endcase %} {%- endif -%} {%- endif -%} {%- endif -%}

Sure, I’ll a “launch checklist”

Thank you for your time and effort

Hi @Claire_Pioupiou,

Please change code here:

Code:

From {{ money_price_min }}

Thanks a lot. I’ll try this change.