Code-Snippets-Functions/Execute a function on a child site/CartFlows/turn-off-auto-fill-checkout-fields.txt

6 lines
169 B
Text

add_filter( 'cartflows_allow_persistace', 'do_not_store_persistance_data', 10, 1 );
function do_not_store_persistance_data( $allow ){
$allow = 'no';
return $allow;
}