I have an Event Details page (created via Wix Events), and I am trying to edit the auto-generated label on that says “Tax (6.5%): $x” based on the tax rate stored in my Events Collection. I want to drop the percentage and just have it say “Tax: $x”.
I can do what I want if I select the element with jQuery in my browser console:
$(“._xxxx[data-hook^=‘tax’] > span”).textContent = “Tax”
But Wix doesn’t let you do this through Corvid (or install jQuery). It would be cleaner to access the code where Wix is auto-generating this label in the first place. Does anyone know if this is possible, or point me to another workaround?
Thanks!