Hi.
The issue is on /wp-content/plugins/facebook-for-woocommerce/vendor/skyverge/wc-plugin-framework/woocommerce in the files:
– class-sv-wc-helper.php
if ( is_callable( ‘is_ajax’ ) && is_ajax() ) {
replace with:
if ( is_callable( ‘is_ajax’ ) && wp_doing_ajax() ) {
– Lifecycle.php
if ( is_admin() && ! is_ajax() ) {
replace with:
if ( is_admin() && ! wp_doing_ajax() ) {
The notices are gone.