• Resolved milonet

    (@milonet)


    Hello I would like to hide the retail price and the percentage that only the wholesale price remains
    I can’t find the css for this

Viewing 14 replies - 1 through 14 (of 14 total)
  • Hi @milonet,
    Thank you for contacting us, On which page you want to hide the retail price and percentage?

    Thread Starter milonet

    (@milonet)

    Hello and thank you
    I would like to hide it everywhere but at least on the category page
    and the product page

    but I don’t think it’s necessary to show the percentage of profit between the retail price and the wholesale price

    best regard
    pat

    Thread Starter milonet

    (@milonet)

    <div class=”detailed”> detailed price advise: $81.00 </div>
    <div class=”Wholesaler”> Wholesaler: $20.00 </div>
    <div class=”Save”> Save: $61.00 (75%) </div>

    I think I write a Div for each price
    could be done easily, and would change the design of the price, or make it disappear with the css

    I can’t find where?

    Thread Starter milonet

    (@milonet)

    hello “Support Wp Experts Support Team”
    Are you still here?

    Thread Starter milonet

    (@milonet)

    I want to remove the retail price and percentage on the categories and products page. everywhere if possible?

    Hi @milonet,
    Thanks for your patience, Please share the Product Page URL of your website so we can provide you the CSS for hiding the retail price and percentage.

    Thread Starter milonet

    (@milonet)

    Hello

    I can not give you the url of my site here

    I find the css tags on the different page

    the problem is that you put your css in the php file and not on a css file

    div.wwp-wholesale-pricing-details
    span.retailer-text
    span.save-price-text
    span.price-text
    bdi
    b
    p

    detailed: $81.00

    Wholesaler: $20.00

    Save: $61.00 (75%)

    ——————————-

    detailed: “span.retailer-text” $81.00 “bdi”

    Wholesaler: “span.price-text” $20.00 “bdi”

    Save: “span.save-price-text” $61.00 “bdi” (75%) “?????” “div.wwp-wholesale-pricing-details b ”

    div.wwp-wholesale-pricing-details b {
    display: none;
    }

    with this tag I manage to make disappear
    the price line “Save: $ 61.00 (75%)”

    then the detailed line I can’t find

    • This reply was modified 4 years, 2 months ago by milonet.

    Hi @milonet,

    
    // For hiding save-price use this Snippet
    .wwp-wholesale-pricing-details p:nth-child(3) {
        display: none;
    }
    // For hiding Actual Price Use this snippet
    .wwp-wholesale-pricing-details p:nth-child(1) {
        display: none;
    }
    
    Thread Starter milonet

    (@milonet)

    Hello its not working
    I don’t see any css tag to be tipe in your plugin code

    Is it really difficult to put real css tags in your module code?

    • This reply was modified 4 years, 2 months ago by milonet.
    Thread Starter milonet

    (@milonet)

    to hide the save line I made this code work

    div.wwp-wholesale-pricing-details b {

    display: none;
    }

    but I found nothing for the detailed price
    your code does not work

    Thread Starter milonet

    (@milonet)

    I need to move forward in my project could you really help me
    I am able to add css tags in your module code but I don’t think it’s up to me to do so

    it seems to me that if we make a wholesale site the customers do not need to know the detailed price, which will be the price on his site

    • This reply was modified 4 years, 2 months ago by milonet.
    Thread Starter milonet

    (@milonet)

    hello it works thank you very much

    Hi @milonet,
    It’s nice to hear that your query is resolved.

    Hi @milonet,
    We would appreciate a kind and honest review.

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘retail price’ is closed to new replies.