Forum Replies Created

Viewing 1 replies (of 1 total)
  • Hey @ggedde! Just came across the same issue. And eventually came up with a little hack to power this thing up.

    
    $(document).on('gform_post_render', function (_, form_id) {
      $(this).on('click keypress', '.gform_delete', function (e) {
        e.preventDefault();
        const field_id = $(this).attr('onclick').split(',')[1].trim();
        gformDeleteUploadedFile(form_id, field_id, this);
        $(this).parents('.gfield').find('input').prop('disabled', false);
      });
    });
    

    Just add this javascript and remove buttons should start working again

    • This reply was modified 4 years, 4 months ago by goodleby.
Viewing 1 replies (of 1 total)