Home Forums Basel support forum SHOW LOW PRICE

SHOW LOW PRICE

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #118722

    nelogy
    Participant

    Hello,
    I need to change the price display on my site

    How can I display the lowest price and write ” from 00,00 € ”

    Can see the example in attached

    Thanks

    #118723

    nelogy
    Participant

    the example

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

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    .single-product-content p.price .woocommerce-Price-amount:first-of-type {
        font-size: 30px;
    }
    .single-product-content p.price {
        font-size: 0;
    }
    
    body .product-grid-item .price {
    	font-size: 0;
    }
    
    body .product-grid-item .price .amount:first-of-type {
    	font-size: 16px;
    }

    Best Regards

    #118791

    nelogy
    Participant

    thank you for your reply,
    In the home page it already displays the lowest price thanks, but I need to add the text ‘start from’ look at the photo

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

    nelogy
    Participant

    in the product page

    It also displays both prices, but I need it to also show the lowest price with the word start from

    please see the picture

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

    Hello,

    Please replace the code with this one:

    .single-product-content p.price .woocommerce-Price-amount:first-of-type {
        font-size: 30px;
    }
    .single-product-content p.price .woocommerce-Price-amount:before {
        content:"start from "
    }
    
    body .single-product-content .summary .summary-inner p.price del span{
        font-size: 0px;
    }
    body .product-grid-item .price {
    	font-size: 0;
    }
    
    body .product-grid-item .price .amount:first-of-type {
    	font-size: 16px;
    }

    Best Regards

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