faca5
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Cannot read properties of undefined – i18nEverything works! Contact Form 7 works!
The issue is with HTML minify, as it removes a part of the code, including
i18n.min.js, because of/*in the JavaScript.If I disable HTML minify, no errors are reported anymore. Sorry for taking up your time. The error that was reported as Contact Form 7 was actually coming from somewhere else.
Forum: Plugins
In reply to: [Contact Form 7] Cannot read properties of undefined – i18nThank you!
Forum: Plugins
In reply to: [Contact Form 7] Cannot read properties of undefined – i18nThat makes sense. Maybe it’s therefore related to caching, e.g. JS being moved to the footer.
Everything works fine, including Contact Form 7, but an issue still appears in console.What’s also strange is that CF7 loads on home page where it isn’t present at all.
Currently, we only have the form added to one post.
Forum: Plugins
In reply to: [Contact Form 7] Cannot read properties of undefined – i18nThat’s is not possible.
Forum: Plugins
In reply to: [Contact Form 7] Cannot read properties of undefined – i18nIt provides invisible protection similar to Google reCAPTCHA, without any tracking code.
https://www.studiofaca.net/json-uvozizdelkovzacontactform7Forum: Plugins
In reply to: [Contact Form 7] Cannot read properties of undefined – i18nList of plugins:
Contact Form 7
Contact Form 7 JS Challenge
Enable Media Replace
Google Analytics 4
GTranslate
StudioFACA Remove Tags
WordPress Nginx proxy cache integrator
WP SuperCachedList of themes:
Times Square
Error is related with:
https://blog.super-server.eu/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.1.4:1:38
First line:
()=>{“use strict”;const e=window.wp.i18n
Word:
i18nForum: Plugins
In reply to: [XML Sitemap Generator for Google] Slow load timeThank you!
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Slow load timehttps://www.super-gostovanje.eu/
Plugin Enabled (827ms):

Plugin Disabled (744ms):

All 7 plugins disabled (74ms)
Forum: Plugins
In reply to: [Contact Form 7] Cannot read properties of undefined – i18n
Forum: Plugins
In reply to: [W3 Total Cache] Incompatibility – Back In Stock Notifier for WooCommerceHello,
We have not yet managed to check.
Thank you.
Hello.
We will check.
Thank you!Forum: Plugins
In reply to: [W3 Total Cache] Incompatibility – Back In Stock Notifier for WooCommerceHello.
The option Don’t cache pages for logged-in users is enabled. We are using the default settings. If you are logged in as an administrator and try to test it, the issue occurs very randomly. If you are logged out, you can reproduce the issue much more easily.
[X] Don't cache pages for logged in users
Unauthenticated users may view a cached version of the last authenticated user's view of a given page. Disabling this option is not recommended.Forum: Plugins
In reply to: [W3 Total Cache] Incompatibility – Back In Stock Notifier for WooCommerceHello,
This happens when Page Caching is enabled.Thank you!
Forum: Plugins
In reply to: [W3 Total Cache] Incompatibility – Back In Stock Notifier for WooCommerceHello,
That’s correct.
Yes, it’s enabled.(Optional) Database Cache and Browser Cache.
Display image error log via SolidMail.
Forum: Plugins
In reply to: [Code Snippets] PHP 8.1 – eval()’d code on line 7Correct.
Error was in snipped.
Before:
if ( WC()->cart->total > $maximum ) {After – solution:
if(isset(WC()->cart->total)) { if ( WC()->cart->total > $maximum ) {