Woocommerce Disable Persistent Cart for Specific User

Solution:

Woocommerce since 3.4 has special filter:

add_filter( 'woocommerce_persistent_cart_enabled', '__return_false' );

Source: https://github.com/woocommerce/woocommerce/pull/19027