Skip to content

Instantly share code, notes, and snippets.

@kilbot
Created May 4, 2022 11:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kilbot/b7d88a70b050dd3a1d27654c7f601fd2 to your computer and use it in GitHub Desktop.
Save kilbot/b7d88a70b050dd3a1d27654c7f601fd2 to your computer and use it in GitHub Desktop.
Deactivate Drip_Woocommerce_Cart_Events->find_drip_visitor_uuid()
<?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