If you upload an image but the preview thumbnail is missing this is probably because the image size is too large.
You can update the maximum permitted thumbnail size by using the following filter:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Increase maximum uploaded thumbnail size | |
*/ | |
function prefix_dropzone_max_thumbnail_size( $size ) { | |
return 1000; | |
} | |
add_filter( 'pewc_dropzone_max_thumbnail_size', 'prefix_dropzone_max_thumbnail_size' ); |