• Resolved Design Extreme

    (@designextreme)


    Just to let you know there are missing indexes:

    Notice: Undefined index: cf7pp_stripe_email in ... /wp-content/plugins/contact-form-7-paypal-add-on/includes/redirect_stripe.php on line 38

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter Design Extreme

    (@designextreme)

    My custom modification was overwritten with the recent update…

    Please change line 38 from:

    $stripe_email = sanitize_text_field($_COOKIE['cf7pp_stripe_email']);

    to:

    $stripe_email = (isset($_COOKIE['cf7pp_stripe_email'])) ? sanitize_text_field($_COOKIE['cf7pp_stripe_email']) : NULL;

    Plugin Support Collin Sasse

    (@collinsasse)

    We aren’t able to make changes to the core code to accommodate custom modifications, can you please provide more information on what exactly you are looking to accomplish?

    Thread Starter Design Extreme

    (@designextreme)

    Please re-read the question.

    Thread Starter Design Extreme

    (@designextreme)

    @collinsasse This is a bug; it’s not a feature request. There should be no warnings for missing array items.

    Thread Starter Design Extreme

    (@designextreme)

    @collinsasse Just a check in about this – it is a straight-forward fix to check for the existence of such a value.

    Plugin Author Scott Paterson

    (@scottpaterson)

    Fixed in 1.9.3

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Undefined index: cf7pp_stripe_email’ is closed to new replies.