Michael Simpson
Forum Replies Created
-
It can’t be changed in the Admin page, but the order can be set in a shortcode using “show”
Forum: Plugins
In reply to: [Contact Form DB] Download questionExpotorting can be done in the plugin without the need to display a datatable.
Forum: Plugins
In reply to: [Contact Form DB] short code parameters not workingI don’t think those options are in the version of datatables included in the plugin. You might want to use [cfdb-table] and include the latest version of datatables yourself.
Forum: Plugins
In reply to: [Contact Form DB] How to add to a countTry it like this:
[cfdb-value form="form_name" trans="CountField(Submitted)&&Submitted=sum(Submitted,345239)"]Forum: Plugins
In reply to: [Contact Form DB] Connect form to a group in MailchimpThere is no integration with MailChimp.
Forum: Plugins
In reply to: [Contact Form DB] table looses formatting…CSS in your theme is probably affecting how the table is displayed.
Forum: Plugins
In reply to: [Contact Form DB] Emails are not working suddenlyI’m the author of CFDB but not Contact Form 7. I simply made CFDB integrate with CF7 to save its form submissions. The form definitions and email are part of CF7. You should check your email settings in the CF7 admin pages.
That being said, problems with email may actually be related to your server configuration and not any plugin.
Forum: Plugins
In reply to: [Contact Form DB] Emails are not working suddenlyCFDB does not send any email. That is your form plugin.
Forum: Plugins
In reply to: [Contact Form DB] Import problemsFixes to address the two remaining issues are being pushed out in CFDB 2.10.28 and CFDB Editor 1.5
Forum: Plugins
In reply to: [Contact Form DB] table looses formatting…What table exactly?
Forum: Plugins
In reply to: [Contact Form DB] Import problems1&2. Yes, the import format must be the standard CSV format with a comma delimiter. It can’t guess the encoding of the file, so use standard UTF-8 (no BOM) so that all characters can be correctly interpreted.
3. Use UTF-8, not UTF8-BOM. I think the invisible BOM character at the start of the file is being added to your first column name, which makes it a different column.
4. Make your first column named “submit_time” (again, no BOM) and give unix timestamp values like “1481198486.0000”. To see an example, on the Import page, Backup Form to CSV File, export one of your forms and then look at the file with a text editor. This exports the data in a format that is re-importable.
Please direct questions about purchased upgrades to info@cfdbplugin.com and not this forum (only allowed for free plugins).
Forum: Plugins
In reply to: [Contact Form DB] PHP 7 Compatible?Forum: Plugins
In reply to: [Contact Form DB] Contact form names in [cfdb-table]No, there is no way to show the name of the form in a column.
Forum: Plugins
In reply to: [Contact Form DB] DB ranking by calculating difference of 2 number columnsI see that human_time_diff isn’t going to work for you.
I added some support in the plugin. Update to version 2.10.27 when it becomes available today.
Try this shortcode:
[cfdb-table form="Ergebnisliste" hide="diff" trans="diff=cfdb_date_diff(Startzeit,Zielzeit)&&Dauer=cfdb_duration(Startzeit,Zielzeit,%h Std. %i Min.)" unbuffered="true" orderby="diff ASC"]That will display Dauer like this:
7 Std. 32 Min.
If you want to change how that looks, change this part of the shortcode:
%h Std. %i Min.
According to this: http://php.net/manual/en/dateinterval.format.phpForum: Plugins
In reply to: [Contact Form DB] select unique / distinct rows using shortcodeThere is no distinct. You would have to write a Class Transform that weeds out the duplicates.