richdaddy7
Junior Member
- Jul 5, 2016
- 128
- 43
Hello, How can I null this plugin: https://srd.wordpress.org/plugins/form-maker
So it is limited by 7 fields, take a look at the attached picture. I found at the javacsript file this code:
So when I change 7 to example 15 nothing happen. I still get this message that I need to upgrade. Also when I look at the code on the browser they stay the same, nothing changing. I hope you understand my issue and thank you for any help.
So it is limited by 7 fields, take a look at the attached picture. I found at the javacsript file this code:
Code:
function vorchjogen() {
is7 = 0;
for (v = 0; v < 100; v++) {
if (document.getElementById('wdform_field' + v)) {
if (document.getElementById('wdform_field' + v).getAttribute("type") != "type_section_break") {
is7++;
}
}
if (is7 >= 7) {
break;
}
}
if (is7 >= 7) {
alert("The free version is limited up to 7 fields to add. If you need this functionality, you need to buy the commercial version.");
return true;
}
return false;
}
So when I change 7 to example 15 nothing happen. I still get this message that I need to upgrade. Also when I look at the code on the browser they stay the same, nothing changing. I hope you understand my issue and thank you for any help.