drathy
Forum Replies Created
-
Hallo Marc @forge12 ,
danke für Deine Rückmeldung. Die Seite ist derzeit unter https://www.nageb.de/newsletter-anmeldung/ erreichbar.
Oh, sorry, vergessen…ich nutze Contact Form 7 für das Formular…das Template basiert allerdings auf Avada. Wir haben die Website nicht selbst umgesetzt, nun aber dir Pflege übernommen.
Ein Captcha-Plugin ist nicht installiert, nein…das Formular ist auch total simpel, wie Du siehst. Ansonsten sind diverse Plugins installiert, nach meinem Verst?ndnis aber keines, welches sich auf Formulare auswirken sollten…
Viele Grü?e,
ChristianForum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Problem in Firefox in admin area@alexgff Is here any update on that problem?
Today it obiously occurs in Chrome also, so the visual editor is empty. If I turn WP Globus off using the button in the right area of the post, the visual editor works as intendet…
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Problem in Firefox in admin area@alexgff No, it’s the standard version…
Forum: Plugins
In reply to: [WP REST Cache] Problem with “Object Type” unknownHi again Richard,
I just saw by chance, that object types are now correct!!! :-O I didn’t change anything besides moving the installation to the final domain and remove the .htaccess directory protection…
Do you know any problems by using such a protection?
Best regards,
ChristianForum: Plugins
In reply to: [WP REST Cache] Problem with “Object Type” unknownHi Richard,
do you have more ideas what the problem might be?
Best regards,
ChristianForum: Plugins
In reply to: [WP REST Cache] Problem with “Object Type” unknownHi Richard,
oh, sorry, of course you meant the “WP REST Cache”-Cache….but yes, I flushed it…and I just flushed it again to be absolutely sure…but Object Type is still “unknown”…
Forum: Plugins
In reply to: [WP REST Cache] Problem with “Object Type” unknownHi Richard,
I wrote it in an PHP file which is included in funcions.php. Yes, it is executed, I set some var_dump() to get the output… It’s really strange… ??
Caching plugin currently deactivated.
Forum: Plugins
In reply to: [WP REST Cache] Problem with “Object Type” unknownHi Richard,
thank you for your quick reply. Yes, sorry, here is my complete code:
function wprc_determine_object_type( $object_type, $cache_key, $data, $uri ){ if($object_type !== 'unknown' || strpos( $uri, 'appdata/v1/articles' ) === false){ return $object_type; } return 'post'; } add_filter( 'wp_rest_cache/determine_object_type', 'wprc_determine_object_type', 10, 4 );