The galleries option is suddenly gone from my admin panel. The galleries themselves are present on the website and I still can select them in the page builder with the gallery asset.
Trying to access the gallery panel via direct URL (/wp-admin/edit.php?post_type=galleries) WP returns “invalid type of content” (own translation).
Since the Gallery-Option is introduced by this theme, I hope you can help me with that.
Knowing that such things do not happen by themselves, here are the last things I did on my page:
– Installed Google Analytics Addon (tried deactivating, no effect)
– Updated Demo Content Importer (tried deactivating, no effect)
– Installed a redirection script in a galerien.lufoto.de subdomain. This subdomain is the German translation of galleries and when WP internally translates the gallery handlers than this might mess something up. Seems like a long shot but since the name is related I thought I mention it.
Here is the code enclosed in a .htaccess-file enclosed in the script:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /galerien/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?r=$1&%{QUERY_STRING} [L]
</IfModule>
I don’t understand what this actually “rewrites” but the last line seems suspicious to me.
Can you help me with that?