Michael Simpson
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form DB] Can’t select columns to export anymoreIt appears that the Dutch translation has single quotes in it that cause a syntax error in JavaScript. I’ll see if I can fix.
Forum: Plugins
In reply to: [Contact Form DB] No Shortcode and Export builder.There is probably another plugin loading conflicting JavaScript libraries.
Forum: Plugins
In reply to: [Contact Form DB] Limit total number of submissionsSee also Accessing Form Data via PHP
Forum: Plugins
In reply to: [Contact Form DB] How to enlarge the font size of the output display data?There isn’t a control on the administration page to change the font. But if you display the data using a shortcode on a page then you can apply CSS.
Forum: Plugins
In reply to: [Contact Form DB] Limit total number of submissionsCFDB doesn’t do that. It just takes whatever form plugins are sending it. So you would have to trigger something in the front-end form plugin to stop accepting submissions. In CF7 you might be able to code a custom validation hook that checks the number in CFDB.
Forum: Plugins
In reply to: [Contact Form DB] Filter by one column and show another?[cfdb-value form="Assessments" show="Percent" filter="Submitted Login=$user_login" limit="1" orderby="submit_time DESC"]Forum: Plugins
In reply to: [Contact Form DB] Do not save forms in DB named…Sorry for the confusion: “no spaces” means no spaces after the comma b/c spaces are interpreted as part of the name.
ie.
Contractor Form1,Contractor Form2
not
Contractor Form1, Contractor Form2Forum: Plugins
In reply to: [Contact Form DB] Checkbox filters for CFDB tableThe plugin does not support that.
Forum: Plugins
In reply to: [Contact Form DB] cfdb-fileThe file is stored in the DB.
Forum: Plugins
In reply to: [Contact Form DB] Filter by one column and show another?Use “filter” to select the entries you want. Use “show” to indicated which fields to display.
Forum: Plugins
In reply to: [Contact Form DB] Slow QueryYou might try temporarily disabling other plugins to see if one of them is loading Javascript that is causing a conflict.
Forum: Plugins
In reply to: [Contact Form DB] Slow QueryThen it shouldn’t be slow. You might open the browser’s Javascript console and see if there is an error.
Forum: Plugins
In reply to: [Contact Form DB] Slow QueryIs it the query (loading data in the page) or a script (Javascript)?
Displaying a form can get slow if you have many thousands of submissions.
Forum: Plugins
In reply to: [Contact Form DB] Before deletion processingIn the CFDB administration view, the “Delete All This Form’s Records” will display a confirmation dialog box when clicked. When selecting rows then clicking the “Delete” button, there is no confirmation.
Forum: Plugins
In reply to: [Contact Form DB] error changing email bodyThis is more of a CF7 question since you are calling its API WPCF7_ContactForm::get_current() but I’ll try to answer.
CFDB hooks into CF7’s wpcf7_before_send_mail hook. It’s code calls the cfdb_form_data hook. So effectively, your code is running when CF7 wpcf7_before_send_mail is run.
But you might try using CF7’s wpcf7_posted_data hook and put your code there instead. That hook is called before wpcf7_before_send_mail (I think). Changes there should be captured by CFDB automatically.