hoffcamp
Forum Replies Created
-
Just to avoid confusion, what I mean is you could make a new directory on your server, like ‘/wp-test’, and set up a fresh WP there. If you are willing to go through all of that just to use a plugin, of course.
Alright. Can you set up a fresh WP on your server? That would help to narrow it down.
Okay – I happen to have access to a dreamhost account, so I put a fresh WP 3.1.3 on there, and installed Form Manager 1.5.23 without the error. So my suggestion is to try downloading the plugin again, and if that doesn’t work, try disabling all of your other plugins to see if you can activate it then. If that doesn’t work, try switching to the default WP theme. Other than that I have no idea.
Forum: Plugins
In reply to: [Form Manager] Email Notification with attachmentYes, but its not pretty. You have to use the custom e-mail notifications. You can copy and paste the code from this faq.
I’m sorry about that. What version of the plugin, MySQL, and WP are you using? Also who is your host?
Forum: Plugins
In reply to: [Form Manager] A few ideasI guess a name validator is simple enough. I wasn’t sure it was necessary. If your spreadsheet needs to do a calculation, then you need to make sure its a number, and if the field is supposed to have an e-mail address, then something else might break the mailer, spreadsheets can’t do date arithmetic on non-dates, etc., but I couldn’t think of something that would break with a non-name. Just my two cents.
The calendar pop-up is something I’m going to include in version 2. Its a lot of work – leap years, internationalization – and I’m looking for a good open source version to use instead of building my own from scratch.
Forum: Fixing WordPress
In reply to: [Form Manager] Display image(s) based on conditionsOkay I see what you mean now. If you look at the generated code for your form, you will see the li’s have ids like ‘fm-item-note-abcd1234’. What you can do is add a CSS rule for each note like:
#fm-item-note-abcd1234 label { display: none; }Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Strange font size changeThanks. Glad to help. BTW finding CSS conflicts is easy with firefox and the firebug plugin. You can selectively disable CSS line by line. Thats what I did, anyway.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Strange font size changeThe offending CSS is
.entry-content table {font-size:1.6em; margin:1em 0;}on line 127 of erudite.css. If you add.fm-form table {font-size:1em !important;}to the bottom of the that file that should solve your problem.Forum: Plugins
In reply to: [Form Manager] Unknown column 'text-4e04d29ae3a91' in 'field list'Thanks! I appreciate it. The limit for the number of fields is imposed by MySQL, and will depend on the field type, but it would be around 8000 text fields.
Forum: Plugins
In reply to: [Form Manager] Unknown column 'text-4e04d29ae3a91' in 'field list'Okay – first I would upgrade to the latest version. This was a bug with a prior version that would happen for forms with more than 20 text fields. So if you delete the most recently created fields over 20 and recreate them after upgrading, you should be fine.
Forum: Fixing WordPress
In reply to: [Form Manager] Display image(s) based on conditionsI posted this in another thread, but I’ll repeat it here just for kicks: if you give the item a nickname, which appears in the back end, and a blank label, which appears in the front end, this will achieve the desired effect.
Forum: Plugins
In reply to: [Form Manager] Form fields data disappeared in the backendI noticed in the other thread you solved the problem, but I’ll put this here just in case somebody else has the same issue.
The fields are stored in the wp_fm_items table, organized by form ID and ‘unique_name’, and each field has a column in the form’s data table, which is numbered by form ID, as in, wp_fm_data_(#). The column name in the data table will be the same as ‘unique_name’ in the items table. If you remove both the entry and the data table column you should be fine.
I figured if somebody is savvy enough to try to put HTML into the labels, I ought to let them do what they want.
If you give the item a nickname and a blank label this will have the result you want.
Forum: Fixing WordPress
In reply to: [Form Manager] Display image(s) based on conditionsYou will get the value of the select box but not the note.