Options- buying the latest version of...

User 2685587 Photo


Registered User
5 posts

Hi,
I bought the web form builder 10 years and it served my needs well back then.

I am now looking to upgrade to the latest version to create a contact form on 2 websites. As the software is very pricey for me, I am wondering what others think of the latest version of program- is it good value for money or are you looking at other options?

Also, if I buy the licence for the latest version, are future updates included?

Thanks
User 2088758 Photo


Senior Advisor
3,106 posts

Hi there, you will get updates for a year on the software if you purchase it now. Its really solid software the only thing im struggling with right now is the reCaptcha v3 as it is not supported yet. Rumor is they are looking at fixing that.

STeve
Taking over the world one website at a time!

Steve Kolish
www.misterwebguy.com

YouTube Channel:
https://www.youtube.com/channel/UCL8qVv … ttneYaMSJA
User 2685587 Photo


Registered User
5 posts

I am trying to avoid needing to use the google image recaptcha as I find them hard to use myself !

I have a form that is currently being spammed so severely, I have had to remove it. I am looking at what options I have to build a new form that will minimise spam and preferably not need a captcha.
User 2699991 Photo


Registered User
5,117 posts
Online Now

K8123 wrote:
I am trying to avoid needing to use the google image recaptcha as I find them hard to use myself !

I have a form that is currently being spammed so severely, I have had to remove it. I am looking at what options I have to build a new form that will minimise spam and preferably not need a captcha.


You can put your own type of captcha onto Web form builder, which disables the submit button if they don't get the answer right.. And instead of sending a confirmation email to them, you send them to a confirm page, then if you think they are genuine, you send them an email with your contact details.
try one of the contact me forms in my signature link below, then if you think it might be suitable I can then show you how (yes they have CAPTCHA but you can do it without and it is the best you are going to get without using captcha
Mastering The Understanding With Hands-On Learning
NEW TO "COFFEECUP SITE DESIGNER" FOUNDATION 6 FRAMEWORK?
STUCK ON SOMETHING?

LEARNING & UNDERSTANDING "THE HOW TO"? THE WHY'S & THE WHEREFORE'S?
WITH WAYAN'S STEP BY STEP TUTORIALS
Contact Me For One To One Assistance
https://mawarputih.coffeecup.com/forms/contact-wayan/

A simple quick way to contact me
https://rsd-tutorialscom.coffeecup.com/ … l-details/
User 187934 Photo


Senior Advisor
20,244 posts

Try putting an input asking what color is the object. Name it ruhuman
I placed a red square on my form.
Use the code below in a HTML element. Change the var regex = /\bRed\b/i; in the code to what color you use. This will hide and show submit button.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <script type="text/javascript">var jQ = $.noConflict(true);
jQ(document).ready(function(){
let counter = 0;
jQ('#fb-submit-button').hide();
jQ("input[name='ruhuman']").change(function(){
var inputValue = jQ('input[name="ruhuman"]').val();
var regex = /\bRed\b/i;
if (regex.test(inputValue) && counter<3) {
jQ('#fb-submit-button').show('slow');
jQ('#fb-submit-button').removeAttr('disabled');
}else{
jQ('#fb-submit-button').hide();
jQ('#fb-submit-button').attr('disabled', 'disabled');

counter++;
document.getElementById('count').innerText = counter;
document.getElementById('count2').innerText = 3-counter;
}
});
});</script>
<p id="output" style="color:White">Number of times entered wrong: <span id="count">0</span>
</p>
<p id="output2" style="color:White">Number of times left: <span id="count2">3</span>
</p></script>
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.