Hi @tjos123,
Add this code snippet to your site to do so:
/**
* Show the billing/shipping country on documents
*/
add_action( 'wpo_wcpdf_after_billing_address', 'wpo_wcpdf_show_billing_country', 10, 2 );
add_action( 'wpo_wcpdf_after_shipping_address', 'wpo_wcpdf_show_shipping_country', 10, 2 );
function wpo_wcpdf_show_billing_country( $template_type, $order ){
$shipping_country = WC()->countries->countries[ $order->get_billing_country() ];
echo '<div>' . $shipping_country . '</div>';
}
function wpo_wcpdf_show_shipping_country( $template_type, $order ){
$billing_country = WC()->countries->countries[ $order->get_shipping_country() ];
echo '<div>' . $billing_country . '</div>';
}