Michael Simpson
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form DB] ERR_INVALID_RESPONSE when trying to export (.xlsx only)There is another thread on this issue. I have not yet been able to reproduce or fix the problem.
https://wordpress.org/support/topic/cant-export-xls-document/#post-8226347
Forum: Plugins
In reply to: [Contact Form DB] Can’t export .xls documentThe Excel export has these requirements: https://github.com/box/spout#requirements
But if your CSV export does not work, then something else is a problem. As yet I don’t know what.
Forum: Plugins
In reply to: [Contact Form DB] Non Registered / Logged In User Cant View DataCheck your CFDB-wide Security Settings
Forum: Plugins
In reply to: [Contact Form DB] Auto Generate Email with Data FileNot from within the plugin. It doesn’t do anything with email.
Sure. These are the key lines that set the fields.
$formData->posted_data[$fieldName] = $valueSelected; $formData->posted_data[$newFieldName] = $emailSelected;I think you want to replace both of those lines with this line:
$formData->posted_data[$fieldName] = $emailSelected;Forum: Plugins
In reply to: [Contact Form DB] Can’t export .xls documentThe URL looks OK.
Does this happen if you use a different browser?
Forum: Plugins
In reply to: [Contact Form DB] Can’t select columns to export anymorePlease try in update 2.10.23 (available shortly)
Forum: Plugins
In reply to: [Contact Form DB] Can’t export to Google SheetsI put in a fix in update 2.10.23 (available shortly). However, the push to Google is older code and won’t work if you have multi-factor authentication setup on your Google Account. That is something I need to upgrade in my code but haven’t gotten to it yet.
Forum: Plugins
In reply to: [Contact Form DB] IP is fetched from CDNI put in some code in update 2.10.23 (available shortly) to try to be a bit more sophisticated in determining the client IP. Give it a try.
Yes. We can either make the field break into columns when the submission is saved “Inbound” (how to do outlined here) or create a transform to split them out when they are display by shortcode or export “Outbound”. You can contact me at info@cfdbplugin.com
The advantage of Inbound is everything is already converted. It shows as separate columns in the administration page. Fields are individually searchable. But this only works for new submissions, not those already saved.
Forum: Plugins
In reply to: [Contact Form DB] If ${Value} is empty do not displyI may have misunderstood. I was thinking that you are are saying that when you have ${Value} in your shortcode, if the entry did not have a “Value” field, then literally “${Value}” is displayed instead of a blank text string “”.
Now that I re-read your post, I think you are saying that don’t want an entry to show on the master page or maybe on the detail page (it is not clear to me) when a certain value is blank.
Please clarify.
Forum: Plugins
In reply to: [Contact Form DB] CFDB does not capture keygen value of Caldera formI tried the cf-keygen plugin. But the problem is that CFDB gets field values through a call to function Caldera_Forms::get_field_data() which is provided by the authors of Caldera forms. That always returns {keygen:key}. So you will have to take up the issue with either the Caldera forms author or the cf-geygen author to allow access to the field value.
The question of a form’s behavior is not a CFDB question. That is a question for whatever plugin displays your form.
That being said, I have an example of using a CF7 form where a SELECT tag has its OPTION choices populated by data in CFDB. See: http://cfdbplugin.com/?page_id=1435
Forum: Plugins
In reply to: [Contact Form DB] Can’t export .xls documentit generates a page with an error
Pls provide info on the error.
Forum: Plugins
In reply to: [Contact Form DB] Can’t select columns to export anymoreI may find some time this weekend.