Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • wicho19

    (@wicho19)

    I had the same problem with Divi. And I noticed 2 input hidden below submit button. When I was clicking checkbox of Shipping, those inputs are removed.
    Those had the parameter “name” of :
    woocommerce-process-checkout-nonce” and “_wp_http_referer
    Those inputs are neccesary for checkout of woocomerce.

    You could try modifying js/scripts.min.js of Divi theme. (First save the original file)
    Search:
    t('.et_pb_wc_checkout_payment_info input[type="hidden"]').remove()

    and replace for

    t('.et_pb_wc_checkout_payment_info form > input[type="hidden"]').remove()

    Clear cache and try again (Verify your change in the file using dev tools)
    This works for me. I hope help you

    wicho19

    (@wicho19)

    I had the same problem with Divi. And I noticed 2 input hidden below submit button. When I was clicking checkbox of Shipping, those inputs are removed.
    Those had the parameter “name” of :
    woocommerce-process-checkout-nonce” and “_wp_http_referer
    Those inputs are neccesary for checkout of woocomerce.

    You could try modifyng js/scripts.min.js of Divi theme. (First save the original file)
    Search:
    t('.et_pb_wc_checkout_payment_info input[type="hidden"]').remove()

    and replace for

    t('.et_pb_wc_checkout_payment_info form > input[type="hidden"]').remove()

    Clear cache and try again (Verify your change in the file using dev tools)
    This works for me. I hope help you

    wicho19

    (@wicho19)

    I did notice that 1 element is missing when I debugged line per line.
    I added a <span> that wrap the input file.
    This has the name of the element in the class. In this case: file-archivo

    <span class="wpcf7-form-control-wrap.file-archivo:not(.wpcf7cf-disabled)">
    [mfile* file-archivo]
    </span>

    This worked for me.
    Quick fix while we wait for the update

Viewing 3 replies - 1 through 3 (of 3 total)