hoffcamp
Forum Replies Created
-
Forum: Plugins
In reply to: [Form Manager] Removing certain fields from auto post from formYou could do this by changing the ‘summary’ template. First make a template that omits the part you don’t want, described here. Once you’ve uploaded the custom template set it as the ‘Data Summary’ template under the Advanced tab for the form.
Forum: Plugins
In reply to: [Form Manager] Suggestion: disable autocomplete for email & phone numberI will make sure to have this in the next major version. Right now I’m only doing bug fixes for 1.6. FYI you can disable autocomplete on a form level on the ‘Advanced’ tab under ‘Behavior’.
Forum: Plugins
In reply to: [Form Manager] list of checkboxFor a checkbox list, use the ‘equals’ test, and type in the value of the option you want to test for.
Forum: Plugins
In reply to: [Form Manager] Confirmation Page ErrorI’m not sure what would cause that, except for possibly a ‘non-standard’ way of querying posts. But that is just a guess, I wouldn’t know for certain without seeing the theme code, and I don’t want to blame the theme per se.
Forum: Plugins
In reply to: [Form Manager] Crashing visual tabThere is most likely a conflict with another plugin. This does not happen on a vanilla install of the newest WordPress.
– There was a conflict with CKEditor, a replacement for the default WYSIWYG editor ( I think ), but I think that was fixed.
– Try going to Forms > Advanced Settings > Post/Page Editor and disable the the editor button (the button that inserts a form shortcode).If neither of those work, try disabling plugins to figure out where the conflict is, then I can try to find a fix.
Forum: Plugins
In reply to: [Form Manager] reCAPTCHA not showingDo you still have a form up with the broken reCAPTCHA? If you post a link I can take a look.
Forum: Plugins
In reply to: [Form Manager] Conditions don't work on IE but do on Google ChromeNo problem – I consider this my free time!
My testing form (you can check it out here) works for IE9 on windows 7, so the problem is probably a conflict with another script (either in your theme, or another plugin).
Also, were you using version 1.6.39 before you changed userscripts.js? It is possible your browser had cached the older version of this file which would also break the condition scripts.
Forum: Plugins
In reply to: [Form Manager] Conditions don't work on IE but do on Google ChromeIf you post a link to the form, that will help me debug the conditions scripts, and I’ll hopefully have a fix by the end of the day.
Forum: Plugins
In reply to: [Form Manager] Form Manager reCAPTCHAIt should be displaying an error message below the reCAPTCHA if they don’t fill it out correctly.
But you are right, its probably confusing this way. I’ll make the change.
Forum: Plugins
In reply to: [Form Manager] Hide form elements in submission on postYou could use a custom summary template described here. The article is for a custom e-mail template, but it is the same instructions for a custom summary.
First make the template, then choose the new template under the Advanced, then Templates > Data Summary
Forum: Plugins
In reply to: [Form Manager] WCAG validationOhhh okay. I’ll make that change as well. Thanks for pointing this stuff out.
Forum: Plugins
In reply to: [Form Manager] Can't add any form elementsMy first guess is your host is showing PHP warnings. My code generates warnings (but not errors). This is a bug with FM. Your host should have an FAQ about how to disable PHP warnings.
If this isn’t it, then I have no idea.
Forum: Plugins
In reply to: [Form Manager] Add Onclick option to a fieldYou can add an onclick event using javascript. This FAQ lists the functions you can use to access form items. You’ll want to use
fm_get_form_itemto get the input tag. Make sure to give the item a nickname, and use that asitemID.You would have to set the e-mail address on each form. You can do this on the main form editor page, on the right hand side, under E-mail Notifications > Also send notification(s) to.
I think I see what you are trying to do, but I don’t know how you would do it with the plugin as it is.
If you want some pointers about the code, feel free to ask. You could play around with
fm_displayForm, on line 349 of api.php. This contains the ‘behavior’ logic, like disabling the submit button, etc.