Michael Simpson
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form DB] PHP 7 SupportExactly right.
No, it seems that CF7 does not provides that information in those cases, so CFDB cannot know where the submission came from.
Forum: Plugins
In reply to: [Contact Form DB] make available to editor user levelYes, see the CFDB Options page Security tab.
Forum: Plugins
In reply to: [Contact Form DB] MultisiteIt should work on multisite so long as the plugin has permission to create a table in the DB for each site.
Forum: Plugins
In reply to: [Contact Form DB] CFDB short code issue[cfdb-value] Should simply work. You might try switching to Text mode in the WP editor so that when you paste it in there are no HTML encoded characters.
Forum: Plugins
In reply to: [Contact Form DB] CFDB short code issueWhat shortcode are you using?
Forum: Plugins
In reply to: [Contact Form DB] PHP 7 SupportForum: Plugins
In reply to: [Contact Form DB] How to call submit_timeSorry, change
if (!isset($posted_data[‘submit_time’]))
To
if (!isset($formData->posted_data[‘submit_time’]))Change
$posted_data[‘submit_time’] = $plugin->generateSubmitTime();
To
$formData->posted_data[‘submit_time’] = $plugin->generateSubmitTime();Forum: Plugins
In reply to: [Contact Form DB] Import Contact form dataI mean export the data from that table in the DB and import it into the new DB. Do this with PHPMyAdmin.
Forum: Plugins
In reply to: [Contact Form DB] A question about record synchronizationCFDB only saves form submissions when they occur. It does not synchronize saved ones.
Forum: Plugins
In reply to: [Contact Form DB] Contact Form FilteringThen CFDB plugin does not do any email. That is a question for your form plugin. I think Contact Form 7 can do it.
Forum: Plugins
In reply to: [Contact Form DB] How to call submit_timeIt looks like you are modifying CF7 code which is a bad idea. I provided you a solution using a hook. The link in my previous post describes where to put it.
Forum: Plugins
In reply to: [Contact Form DB] WR CONTACT FORM PROBLEMAll CFDB versions are listed here: https://wordpress.org/plugins/contact-form-7-to-database-extension/developers/
Forum: Plugins
In reply to: [Contact Form DB] Connect two forms dataThere isn’t a way to connect two different forms. But you can do something similar if all the data is in the same form. http://cfdbplugin.com/?page_id=1389
Forum: Plugins
In reply to: [Contact Form DB] Error: File missing?The plugin does not delete its own files. Someone or something deleted or corrupted the files on your site. Re-installing should work.