Re: CAPTCHA Anti-Robot Mod
Sorry it took me a few days to respond to you. I thought I had subscribed to this thread when I posted in it :blush:. I changed that to 95 and it looked great on the create account page. but still had one letter on the first line on the contact us page. I played around with numbers and 99% fixed it fine on all the pages I see it on currently. Thank you for the help :clap:
Re: CAPTCHA Anti-Robot Mod
Hi, I just installed this and I'm having the same problem as FunkyPapa. I adjusted the "inputlabel" and changed it to 99% which fixed the layout problem on the create account page, but it is still an issue on the tell a friend and contact us pages... Anyone know what part of the CSS needs to be adjusted to fix these pages?
Re: CAPTCHA Anti-Robot Mod
Quote:
Originally Posted by
ehinchman
Hi, I just installed this and I'm having the same problem as FunkyPapa. I adjusted the "inputlabel" and changed it to 99% which fixed the layout problem on the create account page, but it is still an issue on the tell a friend and contact us pages... Anyone know what part of the CSS needs to be adjusted to fix these pages?
A link to your site would be helpful in finding an answer for you.
Re: CAPTCHA Anti-Robot Mod
Just loaded this on a test site and the one issue I found was the captcha div does not show when registering on first try. It does redirect back showing the proper error and then the captcha div and all appropriate fields show to be entered.
http://www.kroghfamilyranch.com/cart if you want to see
just fyi.
Re: CAPTCHA Anti-Robot Mod
Quote:
Originally Posted by
richphitzwell
Just loaded this on a test site and the one issue I found was the captcha div does not show when registering on first try. It does redirect back showing the proper error and then the captcha div and all appropriate fields show to be entered.
http://www.kroghfamilyranch.com/cart if you want to see
just fyi.
It was setup to use the Split Login Page. Turn that on and you will be ok. I'll add it to the login page without split login in the next release.
Thanks for the info.
Re: CAPTCHA Anti-Robot Mod
Quote:
Originally Posted by
richphitzwell
Just loaded this on a test site and the one issue I found was the captcha div does not show when registering on first try. It does redirect back showing the proper error and then the captcha div and all appropriate fields show to be entered.
http://www.kroghfamilyranch.com/cart if you want to see
just fyi.
After looking over that part of the Code, there is quick fix for this if you do not want to use the Split Login Screen.
Look for this in includes/templates/YOUR-TEMPLATES/tpl_modules_create_account.php around line 189:
Code:
<?php
if (strstr($_SERVER['REQUEST_URI'],'create_account') && CREATE_ACCOUNT_VALIDATION == 'true' || strstr($_SERVER['REQUEST_URI'],'login') && LOGIN_VALIDATION == 'true') {
?>
Change it to this
Code:
<?php
if (strstr($_SERVER['REQUEST_URI'],'create_account') && CREATE_ACCOUNT_VALIDATION == 'true' || strstr($_SERVER['REQUEST_URI'],'login') && CREATE_ACCOUNT_VALIDATION == 'true') {
?>
In the next release, I will make this a toggle as well.
Re: CAPTCHA Anti-Robot Mod
Just wanted to say, thanks for the contribution.
It was a breeze to install and, it works!
Re: CAPTCHA Anti-Robot Mod
Agreed, and thanks for letting us know the code for non split screen.
Re: CAPTCHA Anti-Robot Mod
This mod works great on such pages as Contact Us, but there's no Captcha image or input area showing up on the main login/register page. http://www.tarbstrading.com/index.php?main_page=login
How do I add a Captcha there?
(It's ZC 1.3.9f btw.)
Re: CAPTCHA Anti-Robot Mod
Quote:
Originally Posted by
JayMot
Look back up 3 to 4 messages.