Salesprice missing on Safari / Mobile
-

gsParticipant
Hi,
After recent updates the salesprice has gone missing from mobilephone.
Tried troubleshooting with disabling all addons, but no good.
It is shown on pc and I tried to emulate different phones, no luck either.
If the product is not discounted, the normal price is shown, however if discounted, price is missing from shop and product page?
https://www.tinykids.dk/vare-kategori/udsalg/ this page has discounted products, try to look it up on mobile and then just the shop page.
Hi,
Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.
.hide-larger-price .price {
word-spacing: -1em;
visibility: hidden;
white-space: normal;
}
.hide-larger-price .price *:not(.price) {
word-spacing: normal;
visibility: visible;
}
.hide-larger-price .price > span:nth-child(2) {
display: none;
}
.hide-larger-price .price > ins,
.hide-larger-price .price > small {
margin-left: 4px;
}
.platform-Mac .hide-larger-price .price > ins,
.platform-Mac .hide-larger-price .price > small,
.platform-iOS .hide-larger-price .price > ins,
.platform-iOS .hide-larger-price .price > small {
margin-left: calc(1em + 4px);
}
Regards

gsParticipant
Perfect solution – it worked 🙂
It added the price twice, but I just removed the variation price instead making it clean.
Thanks alot.
You are welcome. The fix will be included in our next theme update too.