hoffcamp
Forum Replies Created
-
Forum: Plugins
In reply to: [Form Manager] Check box not displayingHey its no problem. If you can insert stuff into custom.css then put this on its own line:
.fm-form input[type='checkbox'] { width: 100% !important; }Or, if you can get file access to your server, the file with the ‘conflict’ is ‘wp-content/themes/thesis_181/custom/layout.css’, on line 243, but I’m not sure your changes won’t be overridden later on by the Thesis control panel. At the very worst case you could add the code to the bottom of ‘wp-content/plugins/wordpress-form-manager/css/style.css’, but these changes will be overridden each time you update the plugin.
Forum: Plugins
In reply to: [Form Manager] Check box not displayingIf you go into thesis_181/custom/layout.css, on line 243:
.format_text input, #commentform input, #commentform textarea { width: 45%; padding: 0.214em; border-width: 0.071em 0.071em 0.071em 0.071em; }This is the style that is causing the checkboxes to be small. At least in my browser. Which file did you edit?
Forum: Plugins
In reply to: [Form Manager] Check box not displayingMy mistake. You should use:
.fm-form input[type='checkbox'] { width: 100%; }Otherwise it will mess with some of the other element types.
Forum: Plugins
In reply to: [Form Manager] Check box not displayingThe checkboxes are there, but really really tiny. The problem is a style conflict. If you add
.fm-form input { width: 100%; }to your custom .css you should be fine.Forum: Plugins
In reply to: Form Manager Conditions Not WorkingThats a bug. 1.5.19 should work for you. BTW the way ‘equals’ works for checkbox lists is if one of the checked items has the given value.
Forum: Plugins
In reply to: [Form Manager] Form Upload – ImagesDid you change the max file size? The default is set to 1MB which might be too small. Also, just fyi, if you leave the upload directories blank the files will be stored in the WP database rather than in wp-content/uploads. If you want them to go to wp-content/uploads you would put ‘%doc_root%/wp-content/uploads/’.
Forum: Plugins
In reply to: Form Manager Conditions Not WorkingI tried to get the form but I’m only getting a placeholder page.
Forum: Plugins
In reply to: Form Manager Conditions Not WorkingI’m not sure. Could you post a link to the form?
Is this what solved your ie9 problem?
Forum: Plugins
In reply to: [Form Manager] Email Notification with AttachmentForum: Plugins
In reply to: [Form Manager] Email Notification with AttachmentNo, but it should be easy to add. I’ll post an update.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] some suggestionsI changed the way files are created for 1.5.18 which may fix your problem.
When you submit a form it posts the data to the page with the form on it. The shortcode takes care of both showing the form and processing the post data. Basically the javascript simulates submitting the form without the browser having to reload the page.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Submission ErrorThe javasript for the user side is in js/userscripts.js, though this should be included as part of wp_head() already, and the generated scripts for validation appear in wp_footer().
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Submission ErrorYou could also make the ‘varchar (..)’ number smaller for the existing fields. The restriction is that the varchars can’t add up to more than 21,844. I guess it would be nice if there were a warning message rather than just a broken form.