hoffcamp
Forum Replies Created
-
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Submission ErrorIf you go to the advanced tab in the form editor you can change the field type. If you use
text NOT NULLfor some of your fields that should solve your problem.Forum: Plugins
In reply to: [Form Manager] E-Mail NotificationsOkay, leave the box for custom settings unchecked. If you go to ‘settings’, does the correct e-mail address show up below ‘Send to Administrator’? If so then there may be a conflict with your host. Some hosts block outgoing e-mails unless they are sent in a particular way. I would need more details about your setup to help you out more.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Submission ErrorCould you run the database check under ‘advanced settings’ and paste the response?
Okay I can see I left out some important details. To submit the form via AJAX you need to grab the nonce and the form ID along with any of the form items. Easier to give an example than to explain:
function custom_submit(){ var result = <?php echo fm_form_submit_btn_script();?>; if(result == false) return false; var item = fm_get_form_item('the-item'); var data = { fm_id: document.getElementById('<?php echo fm_form_ID();?>')['fm_id'].value, fm_nonce: document.getElementById('<?php echo fm_form_ID();?>')['fm_nonce'].value }; data[item.id] = item.value; jQuery.post('<?php the_permalink(); ?>', data); // do whatever else }Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] some suggestionsI don’t know. I’ll have to dig and see how wordpress itself gets to write files, since in theory the plugin is just wordpress.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] some suggestionsAlright. That means the plugin can’t write files to your server. As far as I know the only way to fix that is to change the folder permissions for /tmp and /templates, and this would be in your host’s control panel.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] some suggestionsIf you go into the form, then under ‘submission data’, there is a link to download all of the submissions as a .csv file.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] some suggestionsAre you able to download .csv files? If that fails also then the problem is probably file permissions.
Forum: Plugins
In reply to: [Form Manager] E-Mail NotificationsI’m not sure – I need some more details about what you are trying to do and what exactly is happening in order to help you out.
Thank you! You could hook in to the onsubmit event of the initial form, use ajax to forward the zip to FM, and then load the ‘store locater’ page.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] some suggestionsAlso, are you able to download .CSV files?
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] some suggestionsAlright. I’m just trying to troubleshoot the problem. If you delete the file directly from your server, does the plugin re-install it? This should also happen if everything is working smoothly. If the template file shows up under the database check, but does not re-install when deleted, that would isolate the problem.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] some suggestionsYou are right, this is something I had to program explicitly. It works on my setup but apparently not on yours and I’m not sure why. Could you do a database check, under advanced settings, and look for the additional template under ‘Templates entries’ ?
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Javascript errors?Okay – you need to add id=”<?php echo fm_form_submit_btn_id();?>” to the submit button. This is new. Also the script() function should be returning an actual function. This is as of 1.5.16.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] some suggestionsLet me apologize, custom templates are not supposed to be overwritten, unless they keep the same filename as one of the default templates. They are supposed to be kept across upgrades, but this is a bit of a hack on my part, and as I’m looking at the FAQ on custom templates I realize I forgot to mention this entirely. Just to make sure, did you save over the default template, or make a new file?