hugovet
Forum Replies Created
-
It’s not a config file issue, woocommerce-services is now instantiated on the wrong hook, the culprit :
public/boutique/wp-content/plugins/woocommerce-services/woocommerce-services.php:376Replace this :
add_action( ‘plugins_loaded’, array( $this, ‘jetpack_on_plugins_loaded’ ), 1 );
with
add_action( ‘init’, array( $this, ‘jetpack_on_plugins_loaded’ ), 9999 );and you’ll be good to go.
To fix it you can make this change :
in /wp-content/plugins/woo-cart-abandonment-recovery/classes/class-cartflows-ca-loader.phpreplace this line :
add_action( ‘init’, array( $this, ‘load_cf_textdomain’ ) );
with this one :
add_action( ‘plugins_loaded’, array( $this, ‘load_cf_textdomain’ ), 5 );
Forum: Plugins
In reply to: [W3 Total Cache] Avoid object and db caching for woocommerce ordersHey 🙂
Thanks for your reply I’ve sent it to you in PM on WordPress slack.
I’m sorry but I experience the same issue, I have the latest version of the plugin you didn’t fix it.
There is also another threas regarding this issue.