Created
May 4, 2022 11:37
-
-
Save kilbot/b7d88a70b050dd3a1d27654c7f601fd2 to your computer and use it in GitHub Desktop.
Deactivate Drip_Woocommerce_Cart_Events->find_drip_visitor_uuid()
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// add to custom functions | |
add_filter( 'option_account_id', function( $value ){ | |
if ( function_exists('is_pos') && is_pos() ) { | |
return null; | |
} | |
return $value; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment