Viewing 1 replies (of 1 total)
  • Plugin Contributor Mihai Joldis

    (@misulicus)

    Hey @dieter93

    Thank you for the report! We will have this fixed in the next release that is currently in the works. For now, please add the code snippet below to your website as a MU plugin to resolve the issue until the next release:

    add_action( 'edd_pre_process_purchase', function () {
    // Block checkout submits the confirmation as
    edd_user_pass2,
    // but checkout validation reads edd_user_pass_confirm.
    if ( empty( $_POST['edd_user_pass_confirm'] ) && ! empty( $_POST['edd_user_pass2'] ) ) {
    $_POST['edd_user_pass_confirm'] = $_POST['edd_user_pass2'];
    }
    } );

Viewing 1 replies (of 1 total)

You must be logged in to reply to this topic.