Disable autocomplete for all forms in WPForms

Disable autocomplete for all forms in WPForms on your child site.

Snippet Type

Execute on Child Sites

Snippet

function wpf_dev_disable_form_autocomplete( $atts, $form_data ) {
     
    // This check will only form autocomplete for Form #11.
    // Removing this check would disable autocomplete on ALL forms.
    if ( absint( $form_data['id'] ) !== 11 ) {
        return $atts;
    }
 
    $atts['atts']['autocomplete'] = 'nope';
 
    return $atts;
}
add_filter( 'wpforms_frontend_form_atts', 'wpf_dev_disable_form_autocomplete', 10, 2 )
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.