Michael Simpson
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form DB] view imagesI don’t see why you need to write your own shortcode. I think you could get equivalent output using cfdb-html
[cfdb-html form="miformulario" show="entidad,logo" search="tipo" filelinks="img"] $logo $entidad <br/> [/cfdb-html]Check your security options and set “Can See Submission data when using shortcodes” to “Anyone”
Forum: Plugins
In reply to: [Contact Form DB] Show all shows only 100 entriesIt shows all items that are loaded in the page (100 per page by default… you can change that default on the CFDB Options page).
Forum: Plugins
In reply to: [Contact Form DB] Sort Multiple FieldsNaturalSortByField, or any transform, works the same with all shortcodes. It does not change how the data is displayed, it orders the entries prior to being displayed by the shortcode.
Forum: Plugins
In reply to: [Contact Form DB] Is it possible to downoad the uploaded files directly?You mean like this?
https://cfdbplugin.com/?p=1478Forum: Plugins
In reply to: [Contact Form DB] Remove scroll bars from CFDB-HTMLcfdb-html? or did you mean cfdb-table or cfdb-datatable?
Forum: Plugins
In reply to: [Contact Form DB] plugin dissapear?It is not in the WP directory. Find it here: https://github.com/mdsimpson/contact-form-7-to-database-extension/releases
Forum: Plugins
In reply to: [Contact Form DB] Edit submission on front-end doesn’t workI’m not familiar with Advanced Custom Fields. Can you walk me through exactly what you are doing?
Forum: Plugins
In reply to: [Contact Form DB] Sort Multiple FieldsTry the NaturalSortByField tranform
https://cfdbplugin.com/?page_id=1135Forum: Plugins
In reply to: [Contact Form DB] Maximum data export (Shortcode)when pulling data out of the DB, it could get slow. Exports & shortcodes that pull a lot of data could cause the server to run out of memory during that call making it limit how much data is returned (but you should be able to increase your server memory). But it will keep collecting the submissions with no problem.
Forum: Plugins
In reply to: [Contact Form DB] Is it possible to downoad the uploaded files directly?I think you can add
&&username=xxx&password=yyyto the download link URLs to make them login.Forum: Plugins
In reply to: [Contact Form DB] Id record numberOK. Ignore the “Add a row number” example b/c that is not what you want.
If you were going to try to create your own +1 label you would have to code that in, plus store the last number in the DB (like in a sequence). You have to really know what your are doing.
I don’t think the plugin is going to do what you want.
Forum: Plugins
In reply to: [Contact Form DB] Placeholders added to DatabaseRight, so I think you want to set a placeholder but NOT set any default (if possible in the form builder).
Forum: Plugins
In reply to: [Contact Form DB] Combine 3 column data in one column in tableUse the “concat” transform to combine fields like this:
[cfdb-datatable form="Refugee Form" trans="Name=concat(FName, ,Lname, ,Mname)&&Address=concat(city, ,state, ,zip)"Forum: Plugins
In reply to: [Contact Form DB] Standard fields “subject” field modification questionI don’t understand why you are getting unexpected information in a form field, but let’s get back to that.
As for the name of the field, CFDB gets the field “name” not the field “label”. You may put a text label next to a field that says “DBA”, but the form field itself has its own name (not displayed) which is “subject”. The form submission tells CFDB that input field “subject” has a value. There is no mention of “DBA” since it is not a form input field, it is just display text. You need to edit that input field itself on your form to change its “name”.
CFDB only gets what the form submission sends it. If your form submits field “subject” = “OUR BUSINESS NAME Contact: “DBA”” then that is what CFDB saves. CFDB doesn’t know what is in your form, it only knows what is posted back to the server by the form **submission**. And that is just a list of field1=value1, field2=value2, …
So you form or web page is putting weird stuff into a field, then submitting that in the form submission, after which CFDB is just saving what it gets. You would need to fix this in the form itself.
Forum: Plugins
In reply to: [Contact Form DB] Placeholders added to DatabaseI assume that “default as placeholder” mean to make the default value of the field be the same as the placeholder if the user does not enter anything. Try turning that off.