How to change text between variation prices

I want to change the text between the variation prices, how can i do that? My website is www.nonastore.com.br

@Morebi12 I mean i want to add text’s or change. For example: From {{price_min}} to {{price_max}}. i want to add the word " From " and the word " To " for every product that have variants.

Hi @nonastore

Please follow these steps:

  • Step 1: In Admin Page, Go to Online Store → Themes → Edit Code

  • Step 2: Add this code on theme.liquid file before tag :


  • Step 3: Save your code

I hope that it will work for you.

1 Like

@BSS-Commerce it’s not working for all products :cry: if i click next page the script stop working. any solution?

Hi @nonastore

You just need to wrap this code outside the code I sent you earlier:

setInterval(()=>{
  //Your code
})

Like this:

setInterval(()=>{
   let prices = document.querySelectorAll(".price");
   if(prices.length){
     for(let i=0; i

I hope that it will work for you.
1 Like