Formidabe Form Issue again

Hi, this has popped up again… no idea why this is happening. I use Formidable and all of my plugins/themes on a number of sites, and I have never seen this. It seems like something specific to this site.

Does this code only fix one block? Is there a global way to address this. It is happening on a number of pages.

I am referring to the code on this post:

jQuery(".x-global-block-206").html(jQuery(".x-global-block-206").children());​

I have it set in the Global JS, but it doesnt fix the issue anymore. Please help, the client is not happy about this one.

Hi, I need an answer on this please. sorry to be a pain… any ideas why this is happening?

UPDATE: still an issue, and I just got another email form the client asking when it would be fixed. any help would be great!

Hi Riceman,

Thanks for reaching out.

The reason why it is happening because of incompatible content. We’ve been trying to find a solution but it is something strange on your install but I found some workaround that would require a little CCS and JS.

Add 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>" );

Add 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.

Thank you , thank you!

How would I go about hiring you to take a closer look and find the issue. You say “incompatible content” but I have no idea what that could be…

I appreciate the workaround, really! I wonder how long it will work. So please let me know what to do to hire you to do some more digging.

Thanks again! I really do appreciate the help. I realize this is outside of the scope.

Probably the “One” plan?

Hi Riceman,

The workaround will work if the website structure will not be change. Yes, One will help you to dig down about the issue.

Hope that helps.

Thank you

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