Feb 19, 2021 5:37 pm
We want to display every members country after their name on the forums. The Country is a custom field they fill on registration.
How can we do this please? I cannot find any hook or something to edit this before its output.
Thanks
1 Reply
Feb 19, 2021 7:00 pm
I have found a solution. I used the template override post.php and added in:
<?php echo get_field('country', 'user_'.$member['ID']); ?>
Ideally a hook would be best as I dont like using template overrides in case things change and it breaks the page, or I have to update it, but its working.