hoffcamp
Forum Replies Created
-
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Form copyIn the form editor, to the right of the buttons for inserting form elements should be ‘insert saved form’. You can insert the fields from another form with this.
I looked at the code, for some reason the scripts are being generated three times, but of course only one form. I’m not sure why that would be, but I think that is the problem. I would try deactivating other plugins to see if that solves it, and then from there I’ll see if I can resolve the conflict.
The string is a serialized array, so you would use unserialize() to turn it into an array. Depending on how your file upload is set up, it will be either the raw data of the file or the filename.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] databse column nameThe database column names correspond to the ‘unique_name’ values in the items table. If you make sure to update the items table, I think you can get away with changing the database column names, but I haven’t tested it.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Adding image to the postI’ll see what I can do. Unfortunately the code for files is designed to handle any kind of file. If the file upload is given a nickname, you can use fm_summary_get_item_value($nickname) to get an array with information about the file in it (under the key ‘filename’), and wp_upload_dir() to get the upload directory.
I added an option to select the language in 1.6.21 by using the two letter language codes. The option is in Settings > reCAPTCHA Settings.
Forum: Plugins
In reply to: [Plugin: WordPress Form Manager] #quicktags conflict with CKEditorSorry for the late response, this should be fixed in 1.6.21.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Condition not works on IESorry for the late response, this should be fixed in 1.6.21.
If you don’t mind losing all of your forms & data, remove Form Manager and reinstall it that should fix the problem. Otherwise…
You are still going to lose some of the form settings, but not the form items or the data. You need to have access to your database, probably phpMyAdmin or something from your host’s control panel. The table should be named ‘wp_fm_forms’. Delete the ‘template_values’ column, and then reactivate the plugin. Unfortunately you will lose some form settings.
Sorry for the late reply. That is going to be a tough one unfortunately, first you would have to add a column to the data table for your form, and then hook into ‘fm_form_submission’ and update the most recent record to add your custom field.
If I understand what you want, you should just make an extra field for your form and give it a nickname. Then you have some options:
1. Go to ‘conditions’, and do ‘Hide elements if…’ then choose ‘Always’, and then the hidden item under ‘Applies to’. This will keep the element hidden, but you can still change the value using JavaScript
2. Use CSS to hide the element. The ‘li’ tag will have the id ‘fm-item-(nickname)’ if you give it a nickname, so you could set the display to ‘none’ within CSS and modify the value using javascript.
3. Make a custom display template (its in the FAQ) and put some logic to do whatever you need for that particular field. You can test the item’s nickname in the loop.If you post a link to the page I can take a look. This seems to be a common problem, and the solution is always to modify the CSS of the theme. The ‘form’ tag always has the class ‘fm-form’.
Forum: Plugins
In reply to: [Form Manager] [Plug in : WordPress Form Manager] Add a filter ?Unfortunately you can’t filter the data like that. Sorry!
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] download CSV bugThe page you are looking at is the CSV data. There should not be any of the HTML tags, though, and that is what is causing your problem. The quick solution would be to copy and paste the text into a text file and then save it as .csv.
There isn’t a template system for outputting the data, unfortunately. If it is showing columns that you haven’t named then this is a bug. Unfortunately I tested it on my end and it is working. What form items do you have?
Forum: Plugins
In reply to: [Form Manager] Upload video and limit video file type?Jenna I’m sorry to have taken so long for this, however I did just post an update to fix the problem you were having.