Okay
  Public Ticket #1118396
Product price
Closed

Comments

  •  1
    artigGalerie started the conversation

    In products with different prices per variation, the min-max price is shown.

    This is in both product page and category page.

    Can we instead show "from {product_min_price}" to visitors?

    Thanks

  •  1,558
    Laborator replied

    Hi there,

    We just had a similar request in one of our other themes, this is how WooCommerce works and the theme just inherits the options for theme size.

    You can achieve something like that through Custom CSS, by pasting the code below:

    .shop-item-single .item-info.summary .price:after, .shop-item-single .item-info.summary .price:before {
        content: "from ";
        display: inline-block;
        margin-right: 12px;
    }
    

    But this will not remove the line and the second price so it is half working.

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  •  1
    artigGalerie replied

    That's ok. Since you said it's a woocommerce issue I searched and solved it at a child theme using this tutorial

    https://businessbloomer.com/disable-variable-product-price-range-woocommerce/

    Thanks

  •  1,558
    Laborator replied

    Hi there,

    Glad to hear that you managed to fix it, thanks for sharing the fix and I will set the issue as solved

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group