• Resolved madfcat

    (@madfcat)


    I use WOOCS (currency switcher).
    When I apply a percentage discount coupon, free shipping disappears.
    It only happens for Russian rubles, but works for EUR, USD and GBP.

    Please, help 🙂

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter madfcat

    (@madfcat)

    There is a mistake in /classes/woocs.php

    Change line 3937 (version 2.3.7 and also free version 1.3.7):

    $total = $total - WC()->cart->get_discount_total();

    to this:

    $back_convert_discount = (float) $this->back_convert(WC()->cart->get_discount_total(), $currencies[$this->current_currency]['rate']);
    $total = $total - $back_convert_discount;

    Please, close the ticket as it’s WOOCS issue and not WOOCOMMERCE.

    Have a nice day!

    Hi @madfcat

    Please, close the ticket as it’s WOOCS issue and not WOOCOMMERCE.

    OK! I’ll mark this thread as resolved now. If you have any questions related to core WooCommerce, please feel free to open a new thread.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Free shipping on certain amount disappear after coupon percentage discount’ is closed to new replies.