hoffcamp
Forum Replies Created
-
Forum: Plugins
In reply to: [Form Manager] validation dose not work$_REQUEST[‘partyId’]
Check out http://www.php.net and http://www.php.gr.jp/
Forum: Plugins
In reply to: [Form Manager] validation dose not workOkay – please forgive me for using the form, I posted some junk data. One problem I noticed is one of the other validators you added needs to have a forward slash (/) at the beginning and end, so it will be:
/^(\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])$/Even though this validator is not used it will still crash the script without the slashes, so this might be the problem. Also, it looks like you want to prevent ぁ-ん, ァ-ン, and whitespace for the element ‘フリガナ’, correct?
Forum: Plugins
In reply to: [Form Manager] validation dose not workNo problem, I’m glad to help. I looked at the code on your site and it looks like the scripts for the plugin are not being loaded. There should be two ‘script’ tags in the head of the document that load ‘userscripts.js’ and ‘l10n.js’. Without these scripts the form will submit without checking validation or required items like is happening for you. I’m not sure why these scripts aren’t being loaded, though. Possibly there is no wp_head() in your theme’s header, or another plugin is removing the scripts. I hope that helps.
Forum: Plugins
In reply to: [Form Manager] validation dose not workDo you have a link to the form that is broken?
Forum: Plugins
In reply to: [Form Manager] validation dose not workThe way I did validation is that it will allow blank answers, so that you could validate an optional field. If you make the elements required that should solve your problem.
Forum: Plugins
In reply to: [Form Manager] how do I change the email address of the admin in the formJust for clarification, the e-mail address that FM is supposed to be grabbing is the one under Settings > General > E-mail address. Is that what is happening? I could add the option to use a different ‘default’ e-mail address, I just want to make sure there isn’t a deeper issue here.
Forum: Plugins
In reply to: [Form Manager] Email subject and languages questions/suggestionsThe newest version internationalizes the checkbox values like you were saying.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] 0 kb attachment bugFor 1.5.10 I added a ‘table’ display. Its not equivalent to the data page in the admin, and it does not auto-refresh, but it does give links to the posts / file uploads if they exist. If you use the ‘formdata’ shortcode and add ‘table’ as an argument, as in :
[formdata (slug) table]This will display the data as a table. The same arguments for formdata apply, like how many per page, what to sort the table by, etc.
Forum: Plugins
In reply to: [Form Manager] Error saving form : "Row size too large(…)"In 1.5.10 there is a section under ‘advanced’ in the forms editor called ‘submission data’, which lets you change the column type via a MySQL column definition. If you want to change the max length of the data stored, say to 50 characters, you would just the VARCHAR(1000) part to VARCHAR(50) and not worry about the rest. You could also put in “TEXT NOT NULL”, which is a perfectly valid column definition all by itself, and that would also solve your problem.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] time zoneIf you update to 1.5.10 your new submissions will reflect WP’s timezone.
Forum: Plugins
In reply to: [Form Manager] Error saving form : "Row size too large(…)"I have a temporary fix for you. The ‘text area’ type uses TEXT, so you could make some of your fields text areas with a height of 20px or so.
Forum: Plugins
In reply to: [Form Manager] Error saving form : "Row size too large(…)"Thanks! I’ll see what I can do. If you have access to your database you could change the column types yourself, but I’ll add something to the form settings that lets you modify this for the next update.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] time zoneI’ll figure something out for the next update. Thanks for bringing this up.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Revise Height of Text FieldsYou would need to use CSS to do this. So if you want to make all text fields in your form 30 pixels hight, you would put the following in your theme’s style.css:
.fm-form input[type='text']{ height:30px; }Forum: Plugins
In reply to: [Form Manager] IE messes up the looks1.5.6 has as crippling bug, 1.5.7 will fix everything if you ran into the problem.