I still have some minor wishes for me and i need your advice.
1. I would like to have an empty name field. At the moment and with standard settings, the name field is filled with "guest". Where can i delete this default name?
2. Below the inputbox is a field named "Path". What is this for and, since i cannot see any use, where to delete this.
3. I want to change the styling of the email link displayed in the messages. As mentioned here, i need to edit the default.php file in .../views/phocaguestbook/tmpl/
I am pretty sure the correct location of this change would be line 113-128 as it says:
So i added this before line 113 starts:if ($this->display['email'] != 0)
{
if ($values->email != '')
{
if ($sep == 1)
{
$msgpg .= ' ';
$msgpg .= '( '. JHTML::_( 'email.cloak', PhocaguestbookHelper::wordDelete($values->email,35,'...') ).' )';
$sep = 1;
}
else
{
$msgpg .= JHTML::_( 'email.cloak', PhocaguestbookHelper::wordDelete($values->email,35,'...') );
$sep = 1;
}
}
Besides the fact it mixes up the design (which i could fix with the margins, the div style wont work at all).$msgpg .= '<div style=" a:link {color: #434343; text-decoration: underline; font-family: sans-serif; font-size: 10px;}">';
Any idea how to change the appearance of the links?



