• Resolved mnrbig

    (@mnrbig)


    Hello all,

    I have a free shipping rule for orders over 200. However i also apply a discount rule. So my issue is i want to apply a cart rule that only applies the free shipping if the cart net total is over 200. Currently it applies the free shipping to the gross total value(before discount). So i need it to apply the discount to the Cart total value after discount.

    Currently this is achieved with a product discount but i don’t like the sale tags on all my products that B2B customers with discounts see.

    https://freeimage.host/i/dw7VPF2

    https://freeimage.host/i/dw7jiib

Viewing 1 replies (of 1 total)
  • Hi there,

    You can hide the sale base using Additional CSS. Click on?“Additional CSS”?in the?“Customizer”?selection, as seen in the following picture. Also, keep an eye out for the sale tags on the items:

    WooCommerce CSS Customizer

    Then do the same thing as what we did with the code snippet, paste in the CSS snippet just like what we did in the example image:

    
    .woocommerce span.onsale{
    display:none;
    }
    
    

    Or this one:

    
    span.onsale {
    background: none;
    box-shadow: none;
    }
    

    Let me know if this helps.

    Regards
    Owadud

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.