diff --git a/modules/ppcp-wc-gateway/src/Gateway/PayUponInvoice/PayUponInvoice.php b/modules/ppcp-wc-gateway/src/Gateway/PayUponInvoice/PayUponInvoice.php index bd4317cf0..cd73a1c02 100644 --- a/modules/ppcp-wc-gateway/src/Gateway/PayUponInvoice/PayUponInvoice.php +++ b/modules/ppcp-wc-gateway/src/Gateway/PayUponInvoice/PayUponInvoice.php @@ -364,7 +364,7 @@ class PayUponInvoice { } $cart = WC()->cart ?? null; - if ( $cart ) { + if ( $cart && ! is_checkout_pay_page() ) { $cart_total = (float) $cart->get_total( 'numeric' ); if ( $cart_total < 5 || $cart_total > 2500 ) { return false;