I got the problem solved. It was not related to the theme.
My .htaccess contained a rule for hotlink protection:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{REQUEST_FILENAME} \.(gif|jpe?g?|png)$ [NC]
RewriteCond %{HTTP_REFERER} !^https?://([^.]+\.)?domain\. [NC]
RewriteRule \.(gif|jpe?g?|png)$ - [F,NC,L]
</ifModule>
As I removed the rule Edge started displaying images in the hero again.
I’m running WordPress 5.9. CoBlocks 2.21.6 is installed, but not activated and in use currently.
The console displays an error: GET http://URL 403 (Forbidden)
-
This reply was modified 4 years, 4 months ago by lokaurazin.