hoffcamp
Forum Replies Created
-
Forum: Plugins
In reply to: [Form Manager] Field 'title' doesn't have a default valueAll of the tables, including the data table for each form, will have ‘text’ fields. So this is wp_fm_forms, wp_fm_items, and wp_fm_data_*.
I see what you mean. I’ll see what I can do.
Forum: Plugins
In reply to: [Form Manager] Field 'title' doesn't have a default valueThe problem is that the ‘title’ field is a text type, and MySQL should not be expecting a default value for text fields according to the manual, yet some configurations do. Beyond that, I don’t know anything about configuring MySQL.
This is an interesting idea, unfortunately I don’t think this can be done simply with the plugin as is. You could conceivably do this with JavaScript and a hardcoded form for selecting the company, though it would be a bit of a hack. You could put the [formdata] within a hidden div, use a script to scrape all of the submission data, and then show the records that match the selected company.
Forum: Plugins
In reply to: [Form Manager] Field 'title' doesn't have a default valueNo you didn’t mess anything up, this is a conflict with MySQL. What version do you have? Also who is your host?
Forum: Fixing WordPress
In reply to: [Form Manager] Display image(s) based on conditionsActually notes in general don’t show up in the summaries / emails.
Sure send them my way. What you are talking about though would require me to maintain a repository, bit more complex than I’m trying to get into right now. I was thinking of putting some example forms / templates on my site, and putting a link within the plugin.
I just posted the update.
Forum: Fixing WordPress
In reply to: [Form Manager] Display image(s) based on conditionsThe image would show up wherever the ‘note’ is in the form. You could probably use some CSS to move the image around relative to that spot, though.
Forum: Plugins
In reply to: [Form Manager] Granular control (values of elements) on Complex ConditionsI posted an FAQ with a script example of how to do this.
Forum: Plugins
In reply to: [Form Manager] Granular control (values of elements) on Complex ConditionsYou could also put some javascript in a note to rebuild the list every time the other list changes, as long as you make sure the option values stay the same for each option.
Forum: Plugins
In reply to: [Form Manager] Granular control (values of elements) on Complex ConditionsThis would be a lot of work under the hood as compared to just showing and hiding elements. The only suggestion I can think of would be to make separate lists for each case, but this would make your submission data table more complicated to read. Its not a bad idea, and it was something I wanted to do originally, but I’m going build it into version 2 rather than for now.
I just read the title of the post, so I understand what you want now. I think what you are talking about is a better way of doing it so I’ll make the change in the next update.
Forum: Plugins
In reply to: [Form Manager] Cannot add form elementUnfortunately the wp-ecommerce disables the ‘prototype’ script site-wide, which my plugin depends on. There isn’t much I can do from my code. There is a hack that will fix the problem here (scroll down), but you have to redo it every time to you update.
Forum: Plugins
In reply to: [Form Manager] Cloning your formYou can clone the form’s fields, if you go to ‘Insert Saved Fields’ on the upper right of the main form editor. But you can’t clone the data, if that is what you mean.