Although I believe I have the privacy settings correct and only the username shows on their profile page information, the users real name is inserted into the page title. How can I get this to stop showing?
Thank you - but that is already selected. It correctly shows only the Username on the Profile Page. Its just the title of the page on the top of the browser window.
To resolve it I have hacked the /components/com_jsn/views/profile/tmpl/default.php file on line 15
from this:
$this->document->setTitle($this->document->title.' - '.$this->data->name);
to this:
$this->document->setTitle($this->document->title.' - '.$this->data->username);