Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @kcprescott,

    Thank you for contacting us.

    I have checked the page you provided and was unable to see the form viewing it from Chrome on desktop. Checking the code further, I see an inline CSS style of display:none being applied. When adding a simple CSS to revert that, the form displays:
    https://snipboard.io/sRmgOU.jpg

    Could you please verify in case you have made any CSS adjustments for this form within your theme options or page editor?

    This is the code I used to temporarily show it:

    form#forminator-module-254979 {
        display: block!important;
    }

    Best,
    Jonathan S

    Thread Starter kcprescott

    (@kcprescott)

    Thanks for your help.
    Adding your temporary code does indeed make that specific form show.

    I have not (that I am aware of) done any CSS adjustments in regard to forms in my theme or the page editor. Since all of my forms have this problem (another example: https://circuitcellar.com/directories/vendor-directory/vendor-directory-get-listed/) my guess is its in the theme. Is there a global fix I can apply?

    Plugin Support Nithin – WPMU DEV Support

    (@wpmudevsupport11)

    Hi @kcprescott,

    You can try this CSS which should apply for every form globally:

    .forminator-custom-form {
    	display: block !important;
    }

    You can add the CSS via the default WordPress customizer, under Appearance > Customize > Additional CSS.

    However, the above is more of a workaround. I could notice the CSS which hides the form is applied inline, so would highly recommend finding out the source of the issue if possible to rule out where exactly the issue resides.

    You can try running a conflict test to rule out what’s causing it, so it would give a better idea in case you happen to notice such anomalies again.

    You’ll find the following flowchart helpful on how to run a conflict test:
    https://premium.wpmudev.org/wp-content/uploads/2015/09/Support-Process-Support-Process.gif

    I hope this helps in moving forward. Have a nice day ahead.

    Best Regards,
    Nithin

    Thread Starter kcprescott

    (@kcprescott)

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Form not showing’ is closed to new replies.