a.omappapi.com/app/js/api.min.js’%20defer:1 Failed to load resource: the server responded with a status of 403 ()
It doesn’t appear to be a plugin conflict, as I’ve de activated all other plugins.
It doesn’t appear to be a logged in issue, as it appears logged in or out.
Any recommendations for finding and removing the error?
Thanks!
]]><script>document.addEventListener("cmplz_fire_categories",function(e){var consentedCategories=e.detail.categories;if(cmplz_in_array('marketing',consentedCategories)){vgo('process','allowTracking');}});</script>
Is this a core issue, or something specific to one of the scripts I’m using Complianz to manage?
]]>I’m having problems with the plugin and the error occurs
“Cannot read properties of undefined (reading ‘hasOwnProperty’)”.
My website is andremesquita.com
Thanks`
]]>Line 86 currently reads:
if($value['status']=='0') return;
Change this to:
if(isset($value['status'] ) && $value['status']=='0') return;
Not sure if this is the totally correct fix, as $value doesn’t seem to be an array.
]]>TypeError: Failed to update a ServiceWorker for scope ('https://movietvtechgeeks.com/') with script ('https://movietvtechgeeks.com/superpwa-sw.js'): An unknown error occurred when fetching the script.
It’s the only error getting flagged by Lighthouse 8.0 and dropping our score quickly. The people who had the issue and no longer do are the ones that stopped using this plugin, and that’s something I don’t want to do.
I’m sure with so many people mentioning this to you, there must be a solution now. Especially since there has been a recent update.
Thanks so much!
]]>ReferenceError: regeneratorRuntime is not defined ... simple-301-redirects.core.min.js:2:98147
Uncaught ReferenceError: regeneratorRuntime is not defined ... simple-301-redirects.core.min.js:2:161711
Rollback to plugin version 1.07 solves the problem, settings are visible again.
]]>With the latest update (1.9.14), I do see a script error in the console and the side effect of that every click on ‘Save’ is popping up alert box for ‘Leave Site – Changes you made may not be saved.’
Per the initial investigation, it seems the following function is failing.
wpcf7cf.transformConditionsFromArrayOfObjectsToString = function(conditions) {
return conditions.map(function(condition){
var indent = ' '.repeat(condition.then_field.length + 4);
return <code>show [${condition.then_field}]</code>+condition.and_rules.map(function(rule, i){
return ( i>0 ? indent+'and ':'' ) + <code>if [${rule.if_field}] ${rule.operator} "${rule.if_value}"</code>
}).join('\n');
}).join('\n');
}
The root cause is condition.then_field
remains null
in some of the case and which throws an error. is there anyone who is facing the same issue?
Thanks!
]]>However it requires the acf scripts to run first so on many of the pages it causes an error.
Instead of enqueueing everywhere could you only enqueue with ACF
I believe you could achieve this by changing the follow
classes/main.php line 9 – 10
add_action( 'admin_footer', [ $this, 'register_assets' ], 1 );
add_action( 'admin_footer', [ $this, 'enqueue_assets' ] );
to
add_action( 'acf/enqueue_scripts', [ $this, 'register_assets' ], 1 );
add_action( 'acf/enqueue_scripts', [ $this, 'enqueue_assets' ] );
]]>Error:
Uncaught TypeError: Cannot read property ‘removeChild’ of null
at eu-cookie-law.min.js?ver=20180522:2
Script:
function(){n.parentNode.removeChild(n);…
Solution?
Needs to check if the element exists on the webpage before try to removeChild.