hoffcamp
Forum Replies Created
-
Forum: Plugins
In reply to: [Form Manager] 2 Email fields breaks formThis will be fixed. I’ll post back here when this is fixed.
Forum: Plugins
In reply to: [Form Manager] Can't Edit a new form fieldSimple Links is adding scripts to every admin page. There isn’t anything I can do about this.
Forum: Plugins
In reply to: [Form Manager] Really need help!! – Cant edit fieldsThis usually happens when there is a conflict with the scripts for another plugin. Try disabling your other plugins to find the culprit, then let me know which one it was and I’ll see what I can do. Sometimes it is Form Manager’s fault, sometimes not.
Forum: Plugins
In reply to: [Form Manager] Change the name of files uploaded through form managerThis is a bug, but I’m having trouble recreating it. With the browsers I tested (Chrome, FF, IE10), the path did not arrive as part of the upload, and my server was fine with dashes and underscores in the file name. If you know of certain characters that have caused the problem I could start investigating from there.
There was a bug in prior versions where Unicode characters in the file name weren’t being handled properly.
Forum: Plugins
In reply to: [Form Manager] Mobile stylingSorry for the late response everybody…
In the admin section, yes, I’m going to make it play nicely with mobile. As for the front end, if you have any experience with coding sites that work on both desktop and mobile please feel free to suggest something.
As a temporary solution, you can create a form template to display the form however you like, though I can’t give you any advice on how to make it look good on mobile.
Forum: Plugins
In reply to: [Form Manager] how to display form content in page/post with photoThere is a shortcode
formdatathat will show a list of the submissions. It has some options for customization, described here.Forum: Plugins
In reply to: [Form Manager] Validation not functioningI checked the source for the page you linked to. The Form Manager scripts aren’t being loaded in your header; this is usually because the theme is not calling wp_header() in the header code.
Forum: Plugins
In reply to: [Form Manager] Submit button size (how to make it larger)The form tag has the class ‘fm-form’, and the submit button has the class ‘submit’. So you might do something like:
.fm-form .submit { height: 100px; width: 200px; font-size: 34px; }Forum: Plugins
In reply to: [Form Manager] Required fields not stopping the FORM from being submittedI looked at the code generated by your site, and it looks like there is no call to wp_footer() in your theme, which is where the form scripts are generated.
The warning is conservative. Any time you delete a form element, this warning will show up. If you didn’t delete any elements, then this is a bug…
Forum: Plugins
In reply to: [Form Manager] Incorrect reCAPTCHA clears formThis is a bug. I’ll have this fixed in the next update.
Forum: Plugins
In reply to: [Form Manager] Suggestion for two reCAPTCHA field adjustmentsThanks for posting this! I’ll have this in the next update.
Forum: Plugins
In reply to: [Form Manager] Import Data?The only way would be to insert the data directly into the database using PhpMyAdmin or something similar. The data table is named fm_data_(n), where n is the ID of the form. The form ID can be found in the fm_forms table. As long as the forms have the same structure, rows from the old data table can be inserted into the new one without any problem.
Forum: Plugins
In reply to: [Form Manager] Form not found.Go to the Advanced page for your form, scroll to the bottom, and find the ‘Submission Data’ section. For your text fields, you should see something like:
VARCHAR(256) CHARACTER SET utf8 COLLATE utf8_general_cireplace it with:
text CHARACTER SET utf8 COLLATE utf8_general_ciThe key point is replacing the ‘varchar’ with ‘text’. This will be there if you created the form with certain older versions of this plugin.
If you don’t see the ‘varchar’ version, then I don’t know what would cause the limit on 20 fields.
As for php 5.4, I havn’t tested the plugin against it yet. I’ll get on that.
Forum: Plugins
In reply to: [Form Manager] Error 500 – Internal Server Error when downloading resultsGood find! Now I can actually try to fix this. Otherwise there isn’t much I can do, since I can’t recreate this error on my testing site.