• Resolved Viszt Péter

    (@passatgt)


    Hi! This line causes a fatal error in some cases, because the condition is wrong(includes/woocommerce/Woocommerce.php line 112):

    if(! WC()->cart && WC()->cart->is_empty()){
        return ;
    }

    Should be:

    if(WC()->cart && WC()->cart->is_empty()){
        return ;
    }

    This causes some issues with plugins that also mess around with the checkout fields.

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Small bug that creates compatibility issues with other plugins’ is closed to new replies.