Hi guys!
I see that these posts are quite old, but I try my luck and throw in a question in this thread. I have set up the SpamProtector 0.4 and Mollom 0.3 on a customers site. I recommended them to upgrade to SS 3.1.6, but they are not ready for that until after new year. So to get rid of the spam they get in their mailbox I am doomed to set this up with old versions of everything.
I've got it working, but the voice when loading their contact page is quite annoying. There are not any buttons for hearing the sound one more time either. (Not any button for switching the re-captcha in firefox, safari, and chrome on OS X either, but I believe we'll have to live with that). So when it comes to all I see no meaning about bother the users with the voice.
So my question is. How did you turn it of?
---------------
Edit:
Found out that I just could comment out a couple of lines in the mollom/code/MollomField.php
if($this->showCaptcha() ) {
$mollom_session_id = Session::get("mollom_session_id");
$imageCaptcha = MollomServer::getImageCaptcha($mollom_session_id);
// $audioCaptcha = MollomServer::getAudioCaptcha($mollom_session_id);
Session::set("mollom_session_id", $imageCaptcha['session_id']);
$captchaHtml = '<div class="mollom-captcha">';
$captchaHtml .= '<span class="mollom-image-captcha">' . $imageCaptcha['html'] . '</span>';
// $captchaHtml .= '<span class="mollom-audio-captcha">' . $audioCaptcha['html'] . '</span>';
$captchaHtml .= '</div>';
return $html . $captchaHtml;
}