• Hello, As I show all prices gross, I would like to show also the discount gross in the side cart. How can I change this?
    The discount is show everythere else correct gross (basket on the webside, checkout). Only in the side cart it is shown netto and I need to change this as users are getting confused.
    Appreciate any help
    thank you so much

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author xootix

    (@xootix)

    Hello @nicsuper31

    Please go to your wordpress directory -> wp-content -> plugins -> woocommerce side cart premium -> public -> partials
    Copy the template xoo-wsc-footer.php to your theme’s/woocommerce folder
    Open the file.
    On line 59
    <span class="xoo-wsc-tools-value"><?php echo wc_price(WC()->cart->get_discount_total()); ?></span>
    Replace this with

    <span class="xoo-wsc-tools-value"><?php echo wc_price(WC()->cart->get_discount_total() + 
     WC()->cart->get_discount_tax()); ?></span>
Viewing 1 replies (of 1 total)
  • The topic ‘discount is show netto, would like to have it gross’ is closed to new replies.