hoffcamp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [Form Manager] Emails quit working on submissionYour host might be flagging your outgoing e-mails as spam. Some hosts require that e-mails sent from your server have a specific set of headers, especially the ‘from’ e-mail address, if it is different for your WP admin account than your e-mail account.
Forum: Plugins
In reply to: [Form Manager] Table Header RemovalYou could use CSS to hide the header and footer ( display: none; ). The table is given the class ‘fm-data’.
Forum: Plugins
In reply to: [Form Manager] form resetting instead of submitting when filled in on iPadAre you using an HTML cache somewhere?
Forum: Plugins
In reply to: [Form Manager] form resetting instead of submitting when filled in on iPadI used Firefox 29 on Win8.
Forum: Plugins
In reply to: [Form Manager] form resetting instead of submitting when filled in on iPadI just took a look at the page. I’m not sure what is causing the problem, though I suspect something incompatible with another plugin’s JavaScript. The next step I would take is to disable other plugins and see if that solves anything.
I did try the auto redirect with an iPad using my testing server, and it does work in that setup. There are so many other variables though that I can’t rule out something broken in my code, I just can’t reproduce the issue myself.
Forum: Plugins
In reply to: [Form Manager] Shortcode [formdata doesn't workThis should work in the update I just posed (1.6.49).
Forum: Plugins
In reply to: [Form Manager] only the first page of resultsThanks for posting the bug AND the fix. I just posted this in 1.6.49.
Forum: Plugins
In reply to: [Form Manager] Captcha not showingCould you link me to a page that has the broken captcha?
Forum: Plugins
In reply to: [Form Manager] form resetting instead of submitting when filled in on iPad99% of issues are because there is no call to wp_footer() in the theme’s footer. This is where the form specific scripts are placed.. but I’m not sure that this would cause your issue. If you put the form back up I’ll take a look.
Forum: Plugins
In reply to: [Form Manager] Preserving line breaks in submitted form text areas?Sorry to respond late. The line breaks are being stored, at least on my end, but they are not necessarily rendered. To see this, enter some data with line breaks (the pressing Enter kind), go to the Data page for the form, then check the box for that entry, then find the dropdown above the table and select ‘Edit selected’, then click Apply. You will see the line breaks show up in the edit box.
The way to render newlines in HTML is with the CSS property ‘white-space’ (do “white-space: pre;”). So you would apply this to your summary or wherever you want this data to show its line breaks.
Forum: Plugins
In reply to: [Form Manager] No PHP validation!The ReCAPTCHA and file upload restrictions are validated by PHP, the rest are not.
Forum: Plugins
In reply to: [Form Manager] Validation doesn't workIt looks like your theme does not have a call to wp_footer() in the footer. This is where the form is registered with the javascript validation.
Forum: Plugins
In reply to: [Form Manager] In version 1.6.47 does not work sortingThis is fixed in 1.6.48
Forum: Plugins
In reply to: [Form Manager] Multiline selectIf I understand you correctly, you should try the different settings for ‘Style’ on the list item type.
Forum: Plugins
In reply to: [Form Manager] Actions against SpamThe reCAPCTHA form element is designed for this purpose. Were you already using this?