I have the same issue. For the time being, I’ve made a little css tweak to get things back to how it previously showed.
.price .amount:nth-of-type(2) {
display: none;
}
.price {
color: rgba(0,0,0,0.0);
}
First block selects the second amount span (which is the one with highest price value and displays it to none
Second block just makes the little dash in between transparent, so it doesn’t show. (haven’t come up with a more clever solution to hide text which is not in between tags just yet…)
It might be a bit of a dirty solution, but works for the time being. I sure hope someone comes up with a more elegant solution…