• Resolved dcsireland

    (@dcsireland)


    Hi,

    This plugin is exactly what I require for French Regions.
    The only issue is that I need the field to be marked as required NOT Optional.
    I have tried various field editors and adding code to the function.php in the child theme but to no avail – would you know how I might to achieve this?

    Regards Ian

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Dan

    (@dangoodman)

    Hi Ian,

    This custom code snippet makes the state field required on checkout for France:

    add_filter('woocommerce_get_country_locale', function($locale) {
        $locale['FR']['state']['required'] = true;
        return $locale;
    });
    Thread Starter dcsireland

    (@dcsireland)

    Absolute dogs bollocks… works like a dream for France and added UK using same method.
    Tried adding so many different suggestions to the functions.php but this was only one to work for me.
    Next question, where is there a link to donate to you for this plugin please?

    Regards Ian.

    Plugin Author Dan

    (@dangoodman)

    Oh, no need for the donation, thank you. Glad to help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Make State / County field required’ is closed to new replies.