Add The Word "from" In Product Prices

Hi, we are selling size based items such as wall papers and canvas art

Each product has several size/price - so in the categories the price shown is for the small size of each product , how could i add the word from in the categories were the price is shown so the visitors understand that there are more options and prices?

Please advise how could i do that by coding , I have cs cart 4.2.4 version

Thank you!

Hi, we are selling size based items such as wall papers and canvas art

Each product has several size/price - so in the categories the price shown is for the small size of each product , how could i add the word from in the categories were the price is shown so the visitors understand that there are more options and prices?

Please advise how could i do that by coding , I have cs cart 4.2.4 version

Thank you!

If you define options for a product than product will be displayed with "select options" depending on layout template.

Here is an example: http://demo.cs-cart.com/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=shirt&dispatch=products.search&layout=products_without_options

design/themes/YOUE_THEME/templates/common/product_data.tpl

add

{if $product.has_options && !$show_product_options && !$details_page}{__('from')}{/if}

before this line

{include file="common/price.tpl" value=$product.price span_id="discounted_price_`$obj_prefix``$obj_id`" class="ty-price-num" live_editor_name="product:price:{$product.product_id}" live_editor_phrase=$product.base_price}

(!) Not tested