PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

display: none added randomly?

  1. I saw the other topics, one about conditional logic and one about some theme issue and using noformat to remove the display:none.

    I checked my form and I am not using any conditional fields. I also don't think my theme is having any issues. Lastly, I disabled my plugins to no avail.

    Mind you this form showed up w/o any problems about a month ago.

    http://www.padgett.com.php5-17.websitetestlink.com/homeowner-defendants/

    i also have the latest version to my knowledge. any help is much appreciated!

    thanks

    Posted 13 years ago on Monday December 13, 2010 | Permalink
  2. This isn't coming from the plugin. The display:none inline style is being applied via script. The plugin adds the display:none rule in the actual markup.

    It's inheriting this property from another one of your scripts/plugin apprently - most likely this one.

    http://www.padgett.com.php5-17.websitetestlink.com/wp-content/plugins/faq-you/js/faq-frontend.js

    You can try disabling plugins and inline scripts until you find where it's coming from.

    Posted 13 years ago on Monday December 13, 2010 | Permalink
  3. i did disable that plugin to no avail... i will remove all js and see if that does anything.

    Posted 13 years ago on Monday December 13, 2010 | Permalink
  4. Gravity Forms isn't adding the display: none; which you can see by viewing source on the page and then looking at the Gravity Forms output.

    It's being added dynamically via Javascript and it's coming from your theme. Specifically this Javascript which appears in your footer:

    <script src="http://www.padgett.com.php5-17.websitetestlink.com/wp-content/themes/padgette/js/tabs.js" type="text/javascript"></script>

    It's adding the display: none; dynamically because the Javascript wasn't written in such a way that it is specific to it's functionality.

    Posted 13 years ago on Monday December 13, 2010 | Permalink
  5. loaded that js on only the page that needed it (no form on that page) and it works. thanks for the help.

    Posted 13 years ago on Monday December 13, 2010 | Permalink