• Resolved markmorrison52

    (@markmorrison52)


    Hello, without disabling the price completely on the website, is there a way to hide the price of the product (not the subtotal) on the floating cart?

    Thanks very much

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author XplodedThemes

    (@xplodedthemes)

    Hi Mark,

    You can hide the product price within the floating cart only by using this custom css code.

    .xt_woofc-inner .xt_woofc-price {
        display: none;
    }

    Simply insert it within the customizer under Additional CSS.

    Hope this helps

    Thread Starter markmorrison52

    (@markmorrison52)

    That has removed the price inside the cart, but not where you select go to checkout. Is there a way to remove it on the checkout button. Thanks for your help

    Plugin Author XplodedThemes

    (@xplodedthemes)

    Oh, sorry for the misunderstanding!

    Here is the correct CSS code:

    
    .xt_woofc-checkout .xt_woofc-dash, 
    .xt_woofc-checkout .amount {
        display: none;
    }
    

    Let me know if this works for you!

    Cheers

    Thread Starter markmorrison52

    (@markmorrison52)

    Hi no, this doesn’t completely remove the price from the float to cart. But I figured it out. This works:

    .xt_woofc-inner .xt_woofc-price {
    display: none;}
    .xt_woofc-checkout .xt_woofc-dash, .xt_woofc-checkout .amount {display: none
    }

    Plugin Author XplodedThemes

    (@xplodedthemes)

    Correct, the previous code was still needed

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Is There Any Way To Hide Price?’ is closed to new replies.