Home Forums WoodMart support forum variation price display

variation price display

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #701467

    amar.karismatik2727
    Participant

    how to change the variation price to display ?
    for example i have a production variation with 900 da for 10ml and 8000 da for 100ml
    the price displayed by deflaut is for 10ml but i want to display the price of 100ml !

    Attachments:
    You must be logged in to view attached files.
    #701499

    Hello,

    Navigate to Theme Settings > Shop > Variable product > turn off Hide ‘to” price option and check the issue.
    https://postimg.cc/mhPKPQ6f

    Best Regards,

    #701511

    amar.karismatik2727
    Participant

    but when i turn of i will have 2 prices ! i dont want this !
    i want to display the highest price only

    Attachments:
    You must be logged in to view attached files.
    #701531

    Hello,

    Try to add the following CSS in Theme Settings > Custom CSS

    .website-wrapper .price {
        word-spacing: -1em;
        visibility: hidden;
    }
    .website-wrapper .price *:not(.price) {
        word-spacing: normal;
        visibility: visible;
    }
    .website-wrapper .price > span:first-child:not(:last-child) {
        display: none;
    }
    .website-wrapper .price > ins, .website-wrapper .price > small {
        margin-left: 4px;
    }

    Best Regards,

    #701550

    amar.karismatik2727
    Participant

    ok great but how to remove the (-) also

    Attachments:
    You must be logged in to view attached files.
Viewing 5 posts - 1 through 5 (of 5 total)