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

6 lines
185 B
Text

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