hoffcamp
Forum Replies Created
-
I just posted 1.6.0 which ‘officially’ supports WP 3.2.
Forum: Plugins
In reply to: [Form Manager] Conditions Settings Not Working in My FormIf you want to switch back to radio buttons, I fixed the bug in version 1.6.0.
Forum: Plugins
In reply to: [Form Manager] Creating a blank field (place holder) for non required listthat works. campbell AT campbellhoffman DOT com
Forum: Plugins
In reply to: [Form Manager] Creating a blank field (place holder) for non required listCould you post a link to the form? I think I know what you are trying to do, but I’d like to be sure.
I’m working on an update that has some new features, and that will include incrementing the ‘supported’ number. If you are having a particular problem after upgrading the WP core I’d be happy to help you out, but all of the features work on my test system, required fields included, but of course there could be something I missed.
Bage, could you post a link to the form thats not working? Also if you go to ‘Advanced Settings’ and click ‘Reset Templates’ that may fix the e-mails problem. This has happened before to somebody else, and that fixed it, though I have no idea what caused it.
Forum: Plugins
In reply to: [Form Manager] Customizing CSSI see my comment got garbled. I meant to say, the problem is the ‘pre’ and ‘code’ tags around the form in the post/page. I would look for them in the HTML view when editing the page, on either side of the form shortcode, and remove them.
Forum: Plugins
In reply to: [Form Manager] Creating a blank field (place holder) for non required listI’m confused, if you want to make sure the user doesn’t forget to select something, why not just make it required? You could make the requirement conditional, if you want them to choose from at least one of a few dropdowns. Would that work?
Forum: Plugins
In reply to: [Form Manager] Conditions Settings Not Working in My FormThat is a bug with the ‘radio button’ style lists. I’ll have an update shortly. BTW If you make them dropdowns the conditions should work as expected.
Forum: Plugins
In reply to: [Form Manager] Customizing CSSThe problem is the
and
tags that the form appears in. There are newline characters in the code that generates the form, and these are usually ignored, but in this case are being displayed as actual new lines.That would be awesome. What you do is download ‘wordpress-form-manager.pot’ from the /languages directory in the plugin, and then either use one of the programs listed here or just edit the text file itself. The .pot file is pretty self explanatory, it is just a list of phrases. I really appreciate the help.
The problem was that for some reason the line breaks were being turned into html paragraph tags by your server, which would be fine, except that the way the form items were being displayed was choking on the html. I just posted an update that should fix this.
I can’t get the same thing to happen on my end. What are the other fields in your form? Are you using a custom template? Also I could just register with your site and take a look at the form.
campbellATcampbellhoffmanDOTcom.Forum: Plugins
In reply to: [Form Manager] question or an IdeaIf you are decent with JavaScript, you could put some script into a note, with a blank label and the HTML box checked. So if your first item has the nickname ‘item1’, and the second has the nickname ‘item2’ (which you set in the Item Meta tab), this would do what you are talking about:
<script> window.onload = function() { var item1 = fm_get_form_item('item1'); var item2 = fm_get_form_item('item2'); item2.disabled = true; item1.onchange = function() { if(item1.value.match(/\d+/)){ item2.value = ( item1.value * 110 ); item2.value = "$" + item2.value; } } } </script>Forum: Plugins
In reply to: [Form Manager] Cannot save change on existent form after updateHey thanks for letting me know, I’m not sure why that would cause a problem. Glad you got it resolved.
The error in the admin panel is a bug, I’ll have an update posted in a few minutes. And thank you for telling me about it.
I’m not sure about the second thing. If you post a link to the page I’ll take a look.