| |

How to remove autocomplete in all fields WordPress CSS?

How to remove autocomplete in all fields WordPress CSS? Reason is some fields auto fill is wrong. Example email field auto fill with date of birth. Some users confused of this and don’t want this in their site.

Copy the codes below in your functions.php of your current theme folder.

add_action( 'init', 'anton_init' );
function anton_init(){
    if ( ! is_admin() ){
	wp_deregister_script( 'jquery-ui-autocomplete' );
    }
}

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *