Page 1 of 1

Disable The Auto Detail Fill In Feature?

Posted: Thu Aug 23, 2012 6:33 am
by RT77
Hey just bought the software and I notice that it automatically tries to fill in the users name and email address, is there a way to disable this?

Posted: Thu Aug 23, 2012 7:57 am
by Jean-Christophe Bisoux
Hi,
There is no option to disable it, but you can use The Custom jQuery and enter this :

jQuery('input[class="name_field"]').val("");
jQuery('input[class="email_field"]').val("");

This one show empty fields, if you would like prefilled text, use

jQuery('input[class="name_field"]').val("Your Text for name field");
jQuery('input[class="email_field"]').val("Your Text for email field");

Regards,