hoffcamp
Forum Replies Created
-
Forum: Plugins
In reply to: [Form Manager] Too much space between form elementsFor the first problem, first try Forms > Advanced Settings > CSS and uncheck ‘disable the default CSS’. If this doesn’t work, recheck the box… and then you will have to modify the CSS of your theme to accomodate the plugin’s forms. This FAQ explains the CSS classes used by the plugin.
For the second, changing the font, again this is something you do with CSS.
Forum: Plugins
In reply to: [Form Manager] Unable to Edit Form Elements (WP Installed on Closed Network)The plugin does not connect to the internet. The problem with being unable to edit form elements usually is because another plugin is not restricting its scripts to its own pages. Try disabling plugins to find the culprit, then let me know and I’ll see if I can come up with a solution.
Forum: Plugins
In reply to: [Form Manager] Text Field Dropping Partial DataThere is a solution, and I’ll include it into the next release. For now, you can replace line 369 of helpers.php with:
return htmlspecialchars($str);Instead of stripping tags from input, it will include their literal text. I’ll add this as an optional behavior in the next version.
Forum: Plugins
In reply to: [Form Manager] Text Field Dropping Partial DataWhat is happening is the
<2and following content is being stripped as an HTML tag (see under Forms > Advanced Settings > Content Filtering). I’m not sure how to fix this, since the tag stripping works via a whitelist of allowed tags, instead of specifically blocking tags.Forum: Plugins
In reply to: [Form Manager] I just updated this plugin and it gave me a white screen1.6.43 is safe, I committed a bad version as 1.6.42.
Forum: Reviews
In reply to: [Form Manager] Buggy as hellFor what it’s worth, the conditions bug you described has been fixed. However I do realize that a “bug” that wipes out four hours of work is more like a “complete breakdown”.
Forum: Plugins
In reply to: [Form Manager] Version 1.6.42 Error – Will Not ActivateI just posted an update to fix this.
Forum: Plugins
In reply to: [Form Manager] Version 1.6.42 Error – Will Not ActivateYikes.. hold on I’ll fix that.
Forum: Plugins
In reply to: [Form Manager] Quotes in conditional fields / ConditionsThanks for reporting this. I just posted 1.6.42 which fixes this.
Forum: Plugins
In reply to: [Form Manager] CSV Export not working@eeidsness, Excel 07 and 10 will not open files containing international characters properly if generated as suggested above (they need the line that converts the encoding). This StackOverflow thread explains why I did what I did, though there are many options that might be more portable.
@cpaprotna, If you could tell me exactly what version of Excel and OS you are using, I could try to recreate the problem. The generated files were designed to open properly by ‘double click’ rather than importing… I just assumed a naive user would do it this way, so I tried to make it easy for them.
Forum: Plugins
In reply to: [Form Manager] Creating fm_summary_the_parent() URL in templateYou can use the ‘get_permalink’ function like so:
echo get_permalink(fm_summary_the_parent());Forum: Plugins
In reply to: [Form Manager] Custom calculation for field using other field valuesYou would want to add some javascript to your form, which can by done easily:
– add a note element to the end of the form
– give it a blank label
– check the ‘HTML’ box.The javascript functions to access the form’s DOM objects are described here.
Forum: Plugins
In reply to: [Form Manager] Not responsiveIf I had an example of a ‘responsive’ template that worked well with most themes, I could add it as a new template to the plugin, and make it the default for new forms. However I’m pretty ignorant of best practices in this area.
Forum: Plugins
In reply to: [Form Manager] Sytling FormThe choice to use ul/li was a terrible choice – but at this point, changing the default form template would probably break a lot of users’ forms. I’m not sure what to do about this.
If you want to change the generated forms you can create a new form template. Its a bit technical but you can have the form generate whatever HTML you want this way.
Forum: Plugins
In reply to: [Form Manager] Advance email settings with custumSorry for the late response. You have to add a ‘nickname’ to the input, then use that nickname in the shortcode. In the form editor, go to ‘Form Extra’, then assign nicknames there. So if you give the input the nickname ‘cellphone’, the shortcode would be
[item cellphone].