Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
/**
* 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