Ecommerce translate "select" button

Hello :slight_smile:

I have a very simple question, is there a way to translate the “select” text of the select button to “sélectionner” in french so that it reads “sélectionner taille” instead of “select taille”?

Thank you !!
A.


Here is my public share link: LINK
(how to access public share link)

Hi @anthonysalamin,

Your share link is not working - update it so that we can see how we can help!

thanks!

Hi @IVG,

Thanks ! Though I did not share any share link :slight_smile:
For those interested, here is a quick javascript fix I wrote:

let buttonSelect = document.getElementById("a");
let optionToTranslate = buttonSelect.options[0];
optionToTranslate.innerHTML = "Sélectionner Taille";

Codepen

1 Like

so you were able to solve your problem? no more issue?