• Resolved woocado

    (@woocado)


    Hi, my forms have the autocomplete attribute for first name input set to “name”. I would like to set it to “given-name” because it is currently sending incorrect data. How can I do this?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Faisal Ahammad

    (@faisalahammad)

    Hey @woocado

    You can use the following jQuery code to resolve it. This code will modify the existing “autocomplete” attribute, changing it from name to given-name as shown in the screenshot below.

    jQuery(document).ready(function($) {
        $('.firstname-container .firstname-wrap input').attr('autocomplete', 'given-name');
    });

    Give it a try and let me know how that goes! ??

    Shaylee

    (@shayleehansen30)

    Thanks for pitching in, Faisal!

    You can always contact our Customer Success team for more help. They’re super helpful and eager to dig into this with you. Plus, reporting these issues to us helps us keep track and work on fixes that benefit not only you but everyone else who might run into the same snag. So, don’t hesitate to give them a shoutout!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘First name autocomplete’ is closed to new replies.