The client uses variable and single products. Somehow this means that some produts are labeled with double prices. See image. How can I disable that? I only want one price.
Seems one of your plugins generate this second price. You can deactivate all the plugins not related to the theme and check the issue, then activate one by one to detect which one influence.
Here is the CSS code if you want just to hide:
.woocommerce-price-suffix {
display: none;
}
You would better to detect the problem as it may generate the price duplicate in other places and it may be not always possible to hide with CSS.