• Resolved Stephane

    (@passimal)


    Hello

    I dont want to auto-complete name / surname / adress etc when a customer write on forms
    How to do this ?

    Thanks a lot

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Dina S.

    (@themehighsupport)

    Kindly be informed that pre-filling the default WooCommerce field value is part of WooCommerce’s default functionality and is not controlled by our plugin.

    However, you can clear the other checkout fields using the following filter function.

    add_filter('woocommerce_checkout_get_value' , 'clear_checkout_fields');
    function clear_checkout_fields($input) {
    return "";
    }

    We hope this will work for you.

    Thank you!

    Thread Starter Stephane

    (@passimal)

    thanks it’s work fine !

    Plugin Support Dina S.

    (@themehighsupport)

    Glad to hear that.

    Have a great day!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Autocomplete = off’ is closed to new replies.