How can I show price range instead of single price on product images?

Topic summary

عرض أسعار المنتجات في صفحات الكتالوج/المجموعات بدلًا من سعر واحد عندما توجد عدة متغيرات (حسب الحجم)، لأن النظام يعرض سعر أصغر خيار على صورة المنتج الأكبر مما يسبب انطباعًا مضللًا.

  • المطلوب: إظهار صيغة نطاق سعري مثل “From $$ to $$” بدل السعر الأدنى فقط.
  • اقتراح حل تقني: تعديل كود Liquid لإزالة جزء مقارنة السعر (compare_at_price) واستبداله بشرط يعرض product.price_min و product.price_max عندما product.price_varies (خاصة على قالب collection).
  • مكان التعديل: الإشارة إلى ملف product.template.liquid والبحث عن الكود الحالي ثم استبداله بالكود المقترح.

طلب إضافي: إضافة “toggles/tabs” في صفحة المنتج (الوصف، الميزات، القماش، تعليمات الغسيل). تم اقتراح رابط بديل لشرح إضافة التبويبات بدون تطبيق.

الحالة: لم يتم تأكيد نجاح التنفيذ؛ طُرح أكثر من مرة أن الأمر يحتاج تخصيص/تطوير وقد يتطلب توظيف خبير Shopify.

Summarized with AI on February 26. AI used: gpt-5.2.

Hello

kindly advise on flowing tow issues.

1- product price: most of my products has three price variants depending on size unfortunately in the catalog or collections the price of the smallest item shows on the image of the largest item which is creating a misleading and negative impression customer I would like to know if there is way to make price tag From $$ To $$

kindly find attached a screenshot for easy explain

2- Adding toggles to product page for

Product Description, Features, Fabric texture, Washing instructions

I try the code given by krownthemes it’s not working if there is any advice or explain how I can make it will be grateful

link for krownthemes: https://shopify-support.krownthemes.com/article/392-adding-tabs-and-toggles

store: https://www.lannyuae.com/

1 Like

@nidalmnlla

This is code customization work. Please hire a Shopify expert.

Thanks!

@nidalmnlla For task 1. use this code, first find thos code.

We’ll be removing the following lines from the above code example:

{% if compare_at_price > price %}
  {{ compare_at_price | money }}

And replacing them with:

{% if product.price_varies and template == 'collection' %}
  From {{ product.price_min | money }} to {{ product.price_max | money }}

@nidalmnlla I hope this will work and for other task you need to hire a Shopify Developer which will help you to meet you requirements.

1 Like

@nidalmnlla

can you please check the product tab

https://happypoints.io/add-tabs-to-shopify-product-page-without-app-c2-stt-57/

1 Like

Thank you for the reply can you just tell me this code under which file name I can find that will be very helpful

thank you

@nidalmnlla

Find the first code and replace with the other code.

product.template.liquid file.