hoffcamp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [Form Manager] Display image(s) based on conditionsI just tried this out, and I think its what you are talking about. If you make a Note and check the HTML box, you can put anything you want in there, so you could just put an image tag if you want to show an image. So you would put something like
<img src="..." >where … is the URL of the image. Make one of those ‘image notes’ for each of the images, then make a condition that only shows that ‘note’ if the list equals a particular value.The way the default value currently works for text areas is that the value will show up as the initial text. Are you looking for something that goes away when the user clicks on the textarea?
Auto-redirect will send you to another page after you have loaded the submission acknowledgment. Unfortunately you can’t do what you are thinking of.
Okay, try these steps: If you go to Conditions in the form editor, there should be nothing between the ‘Add’ button at the top and the ‘Cancel’ button at the bottom. If there is a condition box, click ‘delete’ and then save. If the page is empty, add a new condition, save the changes, then delete the condition, and save again.
The problem is the form is outputting a partial condition script, so somewhere in the database there is a record of a condition, which needs to be removed.
I just posted 1.5.22.
Okay then thats the bug. The form is outputting partial code for a condition. I’ll have an update shortly.
It looks like you have an empty condition, which is crashing the script. Try it without the conditions first and see if the validation still doesn’t work.
Forum: Plugins
In reply to: [Form Manager] Check box not displayingNo this is the only one. I appreciate the kind words, though, and good luck with your site!
Forum: Plugins
In reply to: [Form Manager] Check box not displayingOkay, it turns out it was a simple fix. I put this in custom.css:
.fm-form input[type="checkbox"] { width: auto !important; }I tested it on FF, Safari, Chrome for Mac & PC, and IE8 for PC.
Forum: Plugins
In reply to: [Form Manager] Check box not displayingNo problem. Send the info to campbell AT campbellhoffman DOT com.
Forum: Plugins
In reply to: [Form Manager] Check box not displayingMaybe try this in your custom.ccs:
.format_text input[type=checkbox] { width:100%; }This would be much easier if I had Thesis. Also I found this which discusses a similar issue, though somebody left a comment about your problem. You might want to look at the Thesis forums since this is more of an issue with Thesis than FM. I’m happy to keep trying, but without access to Thesis I can’t know for sure what will fix your problem.
Thank you for posting about this – there was a bug that completely broke validation, but it should be fixed in 1.5.21. Also your custom validator’s regexp needs to have a forward slash ‘/’ at the beginning and end, otherwise this will cause a javascript crash as well.
The solution had to do with a conflict with another plugin. If you post a link to the form I’ll take a look at the code and see whats wrong.
Forum: Plugins
In reply to: [Form Manager] Check box not displayingI just looked at the code for ‘custom.css’. What shows up is:
.fm-form input [type='checkbox'] { width: 100% !important; }Two things, the obvious one is that the single quote is being replaced by ', and the second is the space after
input, both of which will break the code. You could also try it without the quotes, so it reads[type=checkbox], but you have to remove the space afterinput.Forum: Fixing WordPress
In reply to: [Form Manager] "Add Form Element:" inactiveThere is probably a conflict with another plugin. Try deactivating them all and see if that narrows it down. Are you using WP e-commerce?