Images larger than 1600 seem to time out…I don’t think it’s a server issue, cuz I can uploasd them if I change themes. Thoughts?
Hey jhewak,
There could be a few possible reasons. A plugin conflict or some issue related to wordpress. Since you mentioned it works fine on default theme I suspect it to be a plugin conflict.
To find which plugin is causing the conflict please follow these steps:
1. Go to your plugins page > Deactivate all active Plugins
2. Update WordPress and Enfold to latest version if you have not.
3. Make sure all the plugins are updated.
4. If the problem does not persist when plugins are turned off, activate one plugin at a time and refresh until you find the plugin in conflict.
If the above does not resolve, Please try adding this at the very end of your themes / child themes functions.php file:
add_filter( 'wp_image_editors', 'change_graphic_lib' );
function change_graphic_lib($array) {
return array( 'WP_Image_Editor_GD', 'WP_Image_Editor_Imagick' );
}
We await the results of your plugin compatibility test.
Thanks for your cooperation :)
Best regards,
Vinay