• Resolved MeuMouse.com

    (@meumouse)


    [27-Nov-2024 22:55:11 UTC] PHP Warning: Undefined array key “payment_source” in wp-content/plugins/paypal-brasil-para-woocommerce/includes/payment-methods/class-paypal-brasil-bcdc-gateway.php on line 1068 [27-Nov-2024 22:55:11 UTC] PHP Warning: Trying to access array offset on value of type null in wp-content/plugins/paypal-brasil-para-woocommerce/includes/payment-methods/class-paypal-brasil-bcdc-gateway.php on line 1068

Viewing 1 replies (of 1 total)
  • Thread Starter MeuMouse.com

    (@meumouse)

    Solu??o:

    Substituir o trecho de código a partir da linha 1068 do arquivo /paypal-brasil-para-woocommerce/includes/payment-methods/class-paypal-brasil-bcdc-gateway.php:

    De:

    if ($payment_data['payment_source']['paypal']) {
    $payment_data['payment_source']['paypal'] = array_merge($payment_data['payment_source']['paypal'], $this->get_payer_info($data));
    } else {
    $payment_data['payment_source']['paypal'] = array();
    $payment_data['payment_source']['paypal'] = array_merge($payment_data['payment_source']['paypal'], $this->get_payer_info($data));
    }

    Por:

    if (!isset($payment_data['payment_source'])) {
    $payment_data['payment_source'] = [];
    }

    if (!isset($payment_data['payment_source']['paypal'])) {
    $payment_data['payment_source']['paypal'] = [];
    }

    $payment_data['payment_source']['paypal'] = array_merge($payment_data['payment_source']['paypal'], $this->get_payer_info($data));
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.