Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@herveguetin
Last active October 16, 2018 07:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save herveguetin/6f361d33495c0bd62d7b to your computer and use it in GitHub Desktop.
Save herveguetin/6f361d33495c0bd62d7b to your computer and use it in GitHub Desktop.
The right way to get country name for an order address in Magento
<?php
// For billing address
$order->getBillingAddress()->getCountryModel()->getName()
// For shipping address
$order->getShippingAddress()->getCountryModel()->getName()
?>
@congson95dev
Copy link

Doesn't work
Uncaught Error: Call to a member function getName() on null

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment