• Resolved tripdance

    (@tripdance)


    Hello! I have two questions. I have done this in the past, but I forget how I got it to work. I just switched to the Virtue theme, which is a wonderful theme by the way.

    First question – How do I remove the price range display both on my shop page and on the main product display? I use variable products. I don’t want to see any pricing until the customer actually makes a selection of style and size (then of course the price should display) I tried pasting this code on my custom css area:

    .price {display:none}

    but it doesn’t seem to work. I believe in the past I had to edit something on the woo commerce single product page, but I can not recall and of course would rather not edit that code which would disappear with an update.

    And second question, I would also like to remove the STYLE number displayed on the product page. Do you have a way to do that also?

    Thank you very much!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter tripdance

    (@tripdance)

    I Forgot to post the website this question refers to – it is http://www.sobrietytees.com – thank you!

    Try placing this CSS into Appearance> Theme Options> Advanced Settings> Custom CSS.

    span.product_price.headerfont {
        display:none;
    }
    
    p.product_price.price.headerfont {
        display: none;
    }

    Let me know if that works for you!

    Thread Starter tripdance

    (@tripdance)

    That worked flawlessly. Thank you SO much.
    Any advice on css for removing the display of the style numbers on the product pages?

    Hey,
    Thats your variation description. You can hide with this css:

    .woocommerce-variation-description {
        display: none;
    }

    Kadence Themes

    Thread Starter tripdance

    (@tripdance)

    Perfect, thank you so much! I have a few more questions, but will post separately after I search the forum first.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘How to disable variable pricing display’ is closed to new replies.