How to get Country Names in this view?

How can I also show the “country name” in this view? Sometimes the city name & the flag doesn’t help at all!

Thanks in advance

You have a tooltip with more details:

1 Like

True… but how can i get it out of the tooltip & into the main page?

Found it, done

Line 16 in plugins/Live/templates/_visitorDetails.twig

Added country to it:. New line is below
{% if visitInfo.getColumn(‘city’) is not empty %}{{ visitInfo.getColumn(‘city’) }}, {{ visitInfo.getColumn(‘country’) }}{% else %}{{ visitInfo.getColumn(‘country’) }}{% endif %}{% endif %}