2

I get the country code from field_data_commerce_customer_address table in drupal commerce. Now how to get the full country name from this code.

1 Answers1

1

You can use drupal cores country manager like this :

$country_list = \Drupal::getContainer()->get('country_manager')->getList();
$country_name = $country_list[$country_code]->render();
LouisCuny
  • 21
  • 1