Viewing 1 replies (of 1 total)
  • Dina S.

    (@themehighsupport)

    Please add the below filter function in your child theme’s functions.php file in order to achieve your requirements.

    add_filter('thjm_default_phone_country', 'th9e_change_default_phone_country', 10, 2);
    function th9e_change_default_phone_country($country, $key){
        $country = 'GB'; // add your country code here
        return $country;
    }

    Have a great day!

Viewing 1 replies (of 1 total)
  • The topic ‘Default area code’ is closed to new replies.