Hi @cortinashd,
Can you please share link to the exact plugin that you are referring to?
White screen usually suggests that there might be a fatal error somewhere and debug log might give us some more info on that.
You can enable debug log in your wp-config.php file (located in root WP folder) by replacing define(‘WP_DEBUG’, false); with this code:
// Enable WP_DEBUG mode
define('WP_DEBUG', true);
// Enable Debug logging to the /wp-content/debug.log file
define('WP_DEBUG_LOG', true);
// Disable display of errors and warnings
define('WP_DEBUG_DISPLAY', false);
@ini_set( 'log_errors', 1 );
@ini_set( 'display_errors', 0 );
Insert images again to trigger the white screen and this should create debug.log file in your wp-content folder that could tell us what is going on.
Can you please upload it to any file sharing service like GDrive or Dropbox and share the download link here so we could have a look at it?
Cheers,
Predrag