hoffcamp
Forum Replies Created
-
Forum: Plugins
In reply to: [Form Manager] FORM MANAGER – Errors with Shortcode table and List BoxThis thread got changed to resolved – what was the problem?
Forum: Plugins
In reply to: [Form Manager] Which Members Plugin Do I need?The Members plugin you want is the one by Justin Tadlock. If you have problems accessing Form Manager, go to Users > Roles > Administrator, and then make sure all of the capabilities staring with ‘form_manager’ are checked.
Forum: Plugins
In reply to: [Form Manager] Form submission posts.There is an action hook described here in the faq that is run every time a form is submitted. You could use the wp_insert_post and add_post_meta to insert posts and add custom fields respectively, using the data from the form. The action is passed a parameter with the submission data keyed by nicknames if the items have them. I also have a template here (Custom submission behavior) that shows you how to hook into the form submission action. This way would bypass the normal ‘publish submissions as posts’ functionality.
The alternative would be to make a custom summary template and set it as the ‘data summary template’ in the advanced tab. This would bypass all of the custom fields, though you could make the published post look however you wanted.
Forum: Plugins
In reply to: [Form Manager] placeholder line wrapSilvana, I don’t think you will be able to do that. The ‘placeholder’ option in form manager uses the HTML5 placeholder attribute if the browser supports it. I did some checking and according to the authoritative authority on such things they say you can’t have line breaks or carriage returns for placeholders.
In browsers that don’t support HTML5 you might be able to get away with it since form manager uses its own scripts to simulate HTML5 behavior.
Forum: Plugins
In reply to: [Form Manager] Choose different admin email for notificationsThat makes sense, I guess it should be the default. But there is a way to do that. If you give the form item for the user’s e-mail address a nickname, say ‘user-email’, then you can put
[item user-email]into the From field in the form editor. You can also use the ‘Joe Schmoe <jschmoe@email.com>’ style of addresses, so you could also do something like[item user-fname] [item user-lname] <[item user-email]>.Forum: Plugins
In reply to: [Form Manager] Upload video and limit video file type?You found a bug. The problem is the extensions with numbers in them. For now if you remove ‘mp4’ from that list it will work fine. I’ll post an update to fix the problem.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Form not validatingFor (1) add the following somewhere in a CSS document that you can edit without losing changes:
.fm-form ul li{ background: none; }If your theme doesn’t have a spot to put custom CSS, you can make a ‘note’ element at the top of your form, remove the label, and check the HTML option for the note element. Then put the above CSS within
<style>and</style>and you should be all set.As for the validation the submit button needs to have the ‘onclick’ property set to
return fm_submit_onclick(1). This will call the javascript validation. Good luck!Forum: Plugins
In reply to: [Form Manager] Form not working properly in IE 8 & IE 7I was just trying to access the form you linked to, and it requires a password. If you want you could email me the info to campbell AT campbellhoffman DOT com
Forum: Plugins
In reply to: [Form Manager] Choose different admin email for notificationsThere is an input in the form editor under ‘E-mail Notifications’ to enter a list of e-mail addresses to send notifications to. Would that work?
Forum: Plugins
In reply to: [Form Manager] Can you define the "action" of a form submissionYou could try using the ‘auto redirect’ feature with a link with the #registration anchor. That would be the simplest route. Otherwise you could make a custom form display template and change the action of the form directly.
Forum: Plugins
In reply to: [Form Manager] Conflict with WP e-commerce pluginI’m not sure. If you are certain that the conflict is with WP e-Commerce then there isn’t anything I can do. They disable a certain script library in their plugin and that has some far reaching effects. I’ll see if I can come up with a better fix, but your best bet would be getting WP e-Commerce to not disable the ‘prototype’ script library.
Forum: Plugins
In reply to: [Form Manager] Field names not editableThat is probably a conflict with another plugin, it sounds like the javascript in the editor is not working. I would do the same thing likethegoddess recommended, disable other plugins until you find the culprit. You could also try other web browsers, there is currently an issue with IE9.
Forum: Plugins
In reply to: [Form Manager] Is it possible to hide submit button?I don’t think t here is an easy way to do that. You would have to use javascript. There is an faq here that explains how to get the form items within javascript. If you aren’t comfortable with javascript then I don’t think there is a way to do this.
I just posted an update (1.6.19) that hopefully fixes this issue. I think the problems with the CSV download have been with writing files to the server, since not every configuration allows for this, and not every host will allow such a configuration anyway. So I changed things around so no files have to be written.
Forum: Plugins
In reply to: [Form Manager] Cannot Save Form EditionOkay, the keyword statistics plugin is inserting some javascript into the Form Manager sections and this is causing the save script to break. Unfortunately there is nothing I can do to fix this on my end, you will have to ask the author of the keyword stats plugin to only add the scripts to the appropriate sections.
The javascript is added to the footer of the admin pages, and it is crashing when looking for the ‘kslang’ element, which only exists within certain parts of WordPress.