I'm trying to finalise the design of a website using Squarespace
. I would like to translate two words from US english to UK english (colour
instead of color
), but somehow I'm stuck.
Here's the link to the page: https://www.maisonmariet.fr/collection/mm01
Using jQuery, I've been able to modify one word out of three:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$(".variant-option-title").text("colour:");
});
</script>
Now, when it comes to the "data-variant-option-name" and the "option value", I can't modify anything although trust me I've probably spent 4 hours trying. I hope you guys will be able to understand my issue and to help me fix it...
Please let me know if you need more information. Thanks in advance!
I hope this may helps you
if you want to select option value as a loop,try the below code
If you want to change every values of drop down ,you can use this code