Hey there, I try to change the name of the “Place order” button on my checkout page, but I can’t at all. I can change the loading message but that’s all. I double click, nothing change.
Any info on how to change the name please? Thanks
Hi @SyntaX,
Don’t think it’s possible to change this text within the Designer. You could always use something like this within Page Settings > Custom Code > Before </body>
tag:
<script>
document.querySelector(".w-commerce-commercecheckoutplaceorderbutton").innerHTML = "Your text here"
</script>
Hi!
Thanks, it worked!
1 Like