Adding Text in Pro dumps code on frontend under the form

Hi,

I am having an issue on one of my pages (https://www.albondogranch.com/daycare-booking).

It has a formidable form on the page with an alert box at the top when needed.
When I go to change the text in an alert box at the top of the page the page generates all this text that it dumps on the frontend below the form and I have to go to page setting in Wordpress and delete it.

It seems to be something to do with this [cs_content_seo] then lots of text from the page and booking info and then this js (var input = document.createElement('input'); input.setAttribute('type', 'hidden'); input.setAttribute('name', 'ct_checkjs_frm'); input.setAttribute('value', '39ec4e523624151c1974fbbe7008b77b5e94544df3134b9cfaf9e6d8bae41f7e'); for (i = 0; i < document.forms.length; i++) { if (typeof document.forms[i].id == 'string'){ if(document.forms[i].id.search('form_o2l9n') != -1) { document.forms[i].appendChild(input); } } }[/cs_content_seo]

Hope this is something you can help with!

Cheers,

Jonathan

Hi Jonathan,

Thanks for reaching out.
It seems that you are trying to change the text inside the bog red box shown in the screenshot below. If that is the case, there might some issues with the broken HTML code.

I would suggest you change the text once again, and let us know if that happens again.
Please provide login credentials for your site in a secure note to examine it further, including:

– WordPress Site URL & Login URL
– WordPress Admin username/password

To create a secure note, click the key icon underneath any of your posts.

Thanks

Hi,

I changed the text in the box and it happened again.

I don’t see where I can provide details for a secure note (see image attached)
secure .

Cheers,

Jonathan

Hi @jayvly,

I always see this issue when the formidable form plugin is installed on the website. I guess there’s a conflict between the theme and the plugin that will output extra codes. I found some workaround on how to fix these issues.

I added this code to Pro > Theme Options > JS

jQuery(".entry-content, .x-global-block")
    .contents()
    .filter(function() {
        // get only the text nodes
        return this.nodeType === 3;
    })
    .wrap( "<p></p>" );

and also added this code to Pro > Theme Options > CSS

#cs-content ~ p, .x-global-block .x-section ~ p {
  display: none;
}

Please note that custom development is outside the scope of our support. Issues that might arise from the use of custom code and further enhancements should be directed to a third-party developer.

Hope that helps.

Thank you.

Good morning,

Thank you for your help.
Is there something that I could report to Formidable Forms that they could do on their end. I have found them to be quite helpful any time I have asked about something. Is the conflict on their end or your or both?

Cheers,

Jonathan

Hi Jonathan,

If you still found any issues with the Formidable Forms plugin, please contact the plugin author.

Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.