Home Forums WoodMart support forum Salesprice missing on Safari / Mobile

Salesprice missing on Safari / Mobile

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #219636

    gs
    Participant

    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.

    #219659

    Artem Temos
    Keymaster

    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

    #219919

    gs
    Participant

    Perfect solution – it worked 🙂

    It added the price twice, but I just removed the variation price instead making it clean.

    Thanks alot.

    #219935

    Artem Temos
    Keymaster

    You are welcome. The fix will be included in our next theme update too.

Viewing 4 posts - 1 through 4 (of 4 total)