If we require the e-mail for signing new guestbook entry, then this e-mail address will be displayed obviously at frontend. This may have some risk since it could be collected by spambot.
So I think we can add an option to hide this e-mail from public view, though we still require it. Or just cloak this e-mail address as image or something else.
Thanks.
[Feature Request]: hide e-mail or cloak it
- Jan
- Phoca Hero
- Posts: 48403
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
No, I think, there i
No, I think, there is a some antispam controll (mail function in Joomla!)...try to disable javascript and you will see it...
Administrator can set the e-mail as not required
Administrator can set the e-mail as not required
If you find Phoca extensions useful, please support the project
- Jan
- Phoca Hero
- Posts: 48403
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Yes you can edit it.
Yes you can edit it. Now there is a anti-spam function from joomla framework, just disable javascript and you will see it...
Jan
Jan
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 2
- Joined: 31 Dec 2007, 17:25
Hi Jan,t
Hi Jan,
thanx for the information. But unfortunately I have no influence on the website's users to disable javascript on their computer that's why in my opition it would make sence to have a function to disable showup of the mail-adress...
However, could you give me a hint in which file i can delete the code showing the mail adress?
thx a lot
slaughty from germany
thanx for the information. But unfortunately I have no influence on the website's users to disable javascript on their computer that's why in my opition it would make sence to have a function to disable showup of the mail-adress...
However, could you give me a hint in which file i can delete the code showing the mail adress?
thx a lot
slaughty from germany
- Jan
- Phoca Hero
- Posts: 48403
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Disabling Javascript
Disabling Javascript I have meant, you only see the spam protection. Not mean, it is only work with disabling javascript.
components/com_phocaguestbook/views/phocaguestbook/tmpl/default.php
Jan
components/com_phocaguestbook/views/phocaguestbook/tmpl/default.php
Jan
If you find Phoca extensions useful, please support the project
-
- Phoca Member
- Posts: 35
- Joined: 05 Jan 2008, 21:24
- Location: Netherlands
- Contact:
A temporary solution
A temporary solution could be to open components/com_phocaguestbook/views/phocaguestbook/tmpl/default.php
en replace:
if ($values->email != '')
{
$msgpg .= ' ('. JHTML::_( 'email.cloak', $values->email ).')';
}
width
//- if ($values->email != '')
//- {
//- $msgpg .= ' ('. JHTML::_( 'email.cloak', $values->email ).')';
//- }
In other words: disable these lines. Email won't show up in the front, but will be available for the admin.
Or am i thinking wrong?
en replace:
if ($values->email != '')
{
$msgpg .= ' ('. JHTML::_( 'email.cloak', $values->email ).')';
}
width
//- if ($values->email != '')
//- {
//- $msgpg .= ' ('. JHTML::_( 'email.cloak', $values->email ).')';
//- }
In other words: disable these lines. Email won't show up in the front, but will be available for the admin.
Or am i thinking wrong?
- Jan
- Phoca Hero
- Posts: 48403
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
If you find Phoca extensions useful, please support the project
-
- Phoca Member
- Posts: 35
- Joined: 05 Jan 2008, 21:24
- Location: Netherlands
- Contact:
Glad to see I wasn
Glad to see I wasn't thinking wrong.