Plugin Author
Sumo
(@sumome)
Howdy. What’s your website URL so we can take a look?
I have exactly the same problem and I am not able to fix it
Any help would be appreciated
Thanks
Alfonso Fernández
Hello BrownSpaceMan,
I’m having the same problem in our website. Was it fixed?
Please help, too, SumoMe.
Thanks.
Plugin Author
Sumo
(@sumome)
This is usually caused when your theme has a JavaScript or JQuery that doesn’t allow blank input fields and overrides them forcing the fields to populate.
Sorry that its taken a while to get to you.
We’re in the process of improving our support. if we ever do not get back to you in a reasonable amount of time, please come visit us at our support center where you will definitely get a response.
http://help.sumome.com/
Hello,
Same problem here. I would appreciate some help. I have no idea how to fix it!
Thanks,
Neus
Plugin Author
Sumo
(@sumome)
This is caused by a JavaScript in your theme. It might look something like this:
wp-content/themes/Divi/js/custom.js?ver=2.2
$et_inputs.live(‘focus’, function(){
if ( $(this).val() = $(this).siblings(‘label’).text() ) $(this).val(“”); }).live(‘blur’, function(){ if ($(this).val() = “”) $(this).val( $(this).siblings(‘label’).text() );
});
This is breaking and bad scripting. You’d need to remove it or change themes.
Thank you very much. It woul be great help if you can tell me how to find the script and remove it…
Thanks again,
Neus
Plugin Author
Sumo
(@sumome)
Hey Neustorres,
Unfortunately there’s no way for me to do that for you. I’d advise contacting the theme creator and asking if they have this code and how to disable it. Some themes may not have this code exactly but something similar.
You essentially need to go into the scripts and find it. It took us a while ourselves to figure out what scripts cause this issue, This was one that we were able to find.