Michael Simpson
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form DB] Can I NOT save data from one of my forms?Yes, look under CMDB Options, Saving
Forum: Plugins
In reply to: [Contact Form DB] CF7DBPlugin.php:848 errorI think the issues is that your version of the plugin is outdated and this line is not compatible with more recent versions of PHP. Check that you have version 2.10.37. If not download from GitHub: https://github.com/mdsimpson/contact-form-7-to-database-extension/releases
Forum: Plugins
In reply to: [Contact Form DB] Show data from another table.I think you might need to code it this way:
require_once(ABSPATH . 'wp-content/plugins/contact-form-7-to-database-extension/CFDBFormIterator.php'); $exp = new CFDBFormIterator(); $exp->export('Table1', $atts); while ($row = $exp->nextRow()) { $exp2 = new CFDBFormIterator(); $exp2->export('Table2', $atts); while ($row2 = $exp2->nextRow()) { if ($row2['id'] === $row['id']){ printf('%s', $row2['quantity']); } } }
Forum: Plugins
In reply to: [Contact Form DB] Sender email address not appearing in forwarded emailCFDB does not handle email. That is handled by the form plugin.
Forum: Plugins
In reply to: [Contact Form DB] wp_cf7dbplugin_submits table primary keyThe table does not / should not have a primary key
Forum: Plugins
In reply to: [Contact Form DB] Editor ProblemTry uninstalling CFDB and re-install from a download from https://github.com/mdsimpson/contact-form-7-to-database-extension/releases
If you downloaded it from the main GitHub page, it puts the plugin in a directory of a different name then the editor cannot see it.
My mistake, I thought this was referring to one of my other plugins.
I am not actively adding to this plugin (Add Shotcodes Actions and Filters) but I will address problems if they arise.
Latest versions are now on GitHub. See https://cfdbplugin.com/
Forum: Plugins
In reply to: [Contact Form DB] Not being updated?That editor extension is a not-free extension of CFDB that adds editing capability. Updated to that are here: https://cfdbplugin.com/?page_id=939
Forum: Plugins
In reply to: [Contact Form DB] Not being updated?The plugin updates are now available GitHub instead of WordPress.com
Be sure to install the GitHub updater plugin as well.
See: https://cfdbplugin.com/Forum: Plugins
In reply to: [Contact Form DB] Uploaded CSV, now need a formUnfortunately no. You will have to manually create it.
Forum: Plugins
In reply to: [Contact Form DB] CFDB Search form shows all entriesForum: Plugins
In reply to: [Contact Form DB] Edit Data Mode won’t workUninstall CFDB and install it form a prepared release distro: https://github.com/mdsimpson/contact-form-7-to-database-extension/releases
Fix added in latest version
https://github.com/mdsimpson/contact-form-7-to-database-extension/releases/tag/2.10.36Given that you have a shortcode, in its PHP code, you can call another shortcode like this:
do_shortcode('[some_other_shortcode]');