hoffcamp
Forum Replies Created
-
Forum: Plugins
In reply to: [Form Manager] What's wrong with my conditions?The condition is testing against the value “Email”, not the value in the item called Email.
As far as what you are trying to do, unfortunately I didn’t think of this when I wrote the conditions code. I would have to rewrite it.
Forum: Plugins
In reply to: [Form Manager] WCAG validationLet me make sure I understand the changes you want:
1) Add ‘Recaptcha’ between the iframe open/close tags
2) Add ‘for’ attributes on the label tags in the default form template
3) Change the list separator for checkbox/radio button lists from a br tag to a newline characterI made changes 1 and 2 to my code, I assume these are about accessbility?
For number 3, this would make checkbox/radio button lists render horizontally instead of vertically. I can’t make this change without breaking everybody’s forms, so the W3C is going to have to deal with my violation of WCAG Priority 1 on this issue.
Update to the latest version. Then in the form editor, go to the ‘Advanced’ tab, then ‘Behavior’, then uncheck the box for autocomplete.
I’ll add an option to disable autocomplete for certain forms.
Thanks for posting this. A bug and a solution all in one post – I’ll have the fix out today.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] CSV file and ImageI’ll make the change. This is how it should have been to begin with! Thanks for the suggestion.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] responsive formI’m not sure what you mean by responsive. Are the forms appearing after the rest of the page loads? Or are you talking about the response time of a form submission? Also what theme are you using?
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Add link or urlYou could create a new item type, but you will have to do this every time you update the plugin. Copy and paste the following at the end of types/text.php:
$fm_controlTypes['url'] = 'fm_urlControl'; class fm_urlControl extends fm_textControl { public function getTypeName(){ return "url"; } public function getTypeLabel(){ return "URL"; } public function parseData($uniqueName, $itemInfo, $data){ return '<a href="' . htmlspecialchars( $data ) . '">' . $data . '</a>'; } }Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Add link or urlForum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Send email on data updationThere isn’t a mechanism to automatically send e-mails when you edit data. You have to do it by hand. Sorry!
You should be using the ‘slug’ of a form instead of its ID number. The ID is the XX number in the default slug (form-XX).
Autocomplete should be working in the next update.
Yikes I have no idea. On the order of months, though.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Emails not arrivingIf you aren’t getting a record in the data table, this can happen when using a caching plugin. Go to Forms > Advanced Settings > Security and uncheck the box for the nonce check.
Otherwise, who is your host? The e-mails sent by Form Manager are probably not formed properly, and are getting caught by the host’s spam filter.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Moderate Submission DataUnfortunately there isn’t a moderation feature on the submission data. I feel like this is a glaring omission and I’ll be adding it in the next major version.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Copying ConditionsUnfortunately there isn’t.