It seems you’ve now deactivate the Photon module. Would you mind activating it again, so I can take a look at the issue?
Thanks!
I had to do it because it’s really messing up some galleries using another plugin, but it’s reactivated now.
Thanks! Could you check your theme’s functions.php, and let me know what the $content_width value is?
You’ll also find this value near the top of the file, as explained here:
https://codex.ww.wp.xz.cn/Content_Width
If your theme doesn’t seem to include such a value, could you try to add the following to the bottom of your theme?
if ( ! isset( $content_width ) ) {
$content_width = 700;
}
Let me know if it helps.
It’s on functions.php:
if ( ! isset( $content_width ) ) {
$content_width = 800;
}
Same result.
Could you make sure that value isn’t set to 640 somewhere else in your theme , or try to overwrite the existing $content_width to 700 with that plugin:
https://ww.wp.xz.cn/plugins/custom-content-width/
Let me know how it goes.
That’s weird, even the plugin doesn’t do the trick. Keeps in 640.
Edit: now the plugin is working, Wp Super Cache was the problem. Probably my theme has a 640 width somewhere. Thank you.