Thanks for the tips on creating a calculation and applying that as a negative promotion to make the pricing dynamic on plans. Now the presented price shows as -40.8 as an example and I'm trying to make it look like £40.80.
I have been attempting to use different ways to replace the - with £ in my templates custom code area, but nothing seems to work, am I placing the code in the wrong place? Any help is truly appreciated.
An example of the code I'm using is below (myid is not the actual id just an example):
Code:
<script>
let str = document.getElementById("myid").innerHTML;
let res = str.replace(/-/g, "£");
document.getElementById("myid").innerHTML = res;
</script>