Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created February 10, 2020 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plugin-republic/e5a79d46a76db6fd253feb2da1443720 to your computer and use it in GitHub Desktop.
Save plugin-republic/e5a79d46a76db6fd253feb2da1443720 to your computer and use it in GitHub Desktop.
/**
* Increase the AJAX upload timeout limit
*/
function prefix_pewc_dropzone_timeout( $timeout, $field_id ) {
return 60000; // 1 minute
}
add_filter( 'pewc_dropzone_timeout', 'prefix_pewc_dropzone_timeout', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment