Michael Simpson
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form DB] Shortcode Builder Not Making ShortcodesMinimally select a shortcode from the drop down and a form. Should like like this: http://i.imgur.com/ZxzGsaZ.png
Forum: Plugins
In reply to: [Contact Form DB] Capturing page URL in DBThe form name will not export as a separate field.
Forum: Plugins
In reply to: [Contact Form DB] Breaks Caldera Forms ProcessingI’m releasing new version 2.10.22 tonight.
Forum: Plugins
In reply to: [Contact Form DB] Breaks Caldera Forms ProcessingThanks a lot. I’ll just put in the code from the gist and push an update. I don’t have it set up in GitHub yet.
Forum: Plugins
In reply to: [Contact Form DB] reCAPTCHAThat looks right.
1. Does the field display as “ruarobot”?
2. Do form new submissions show a value in the ruarobot column in CFDB (since the change)?
OK I get it now.
“headers” is just going to rename the columns, not combine them.Doesn’t work: the closest thing would be:
trans=”name=concat(FirstName1-fntalent,FirstName2-fntalent)”
which would work if both forms had those columns, but one column was empty. I played with that and realized it doesn’t work when one of the forms doesn’t have the column at all (vs. value for the column being empty).So I think you are stuck having to write custom transform function to do the combination
http://cfdbplugin.com/?page_id=1076No, the shortcode builder won’t help you merge data from two different forms into the same row. You would have to write code to create a custom transform to re-organize the data.
Forum: Plugins
In reply to: [Contact Form DB] How to delete extraneous tables in Contact Form CB?In CFDB administration page, you can select a form them click the button to delete all of that form’s data.
You should first stop saving that field. Exclude it in the CFDB Options page.
You can delete a column if you purchase the CFDB Editor, but you probably don’t want to buy it just for that. If you delete all the entries that have that field then it will go away. Otherwise you have to remove the column entries in the DB using SQL.
Forum: Plugins
In reply to: [Contact Form DB] How to change Field order on databaseThe plugin doesn’t give you control over the field order in the administration page but does in shortcodes and exports using “show”.
It basically takes the order of fields given to it on submission. This should typically be the same as the order that they appear on the form. But if you change the order of the fields at some point, then you can have different submissions in the database with different orders. There is no guaranteed which order you see by default in the administration page in that case. But if you removed the old entries, then you would see the order of the new entires. If you know what you are doing with SQL, you could try writing queries to change the order directly in the DB. But the plugin doesn’t have an option for re-ordering.
Forum: Plugins
In reply to: [Contact Form DB] Can’t select columns to export anymoreAfter you select the form, the page queries the server for the form fields. It is seems like this request is failing. If your session is no longer good, that might be the cause (just log in again to WP). If not, I suggest to turn on the browser tools Javascript console and see if there is an error being reported. Post that here.
Forum: Plugins
In reply to: [Contact Form DB] CFDB directly to Google Drive?I don’t have a way to do that.
Forum: Plugins
In reply to: [Contact Form DB] Can’t select columns to export anymoreDo you have a form selected on the fist tab?
Forum: Plugins
In reply to: [Contact Form DB] PHP7 Compatibility?That’s test code, so you don’t have to worry about it.
Everything under the phpunit directory is test code and is not executed on your site.
- This reply was modified 9 years, 8 months ago by Michael Simpson.
Forum: Plugins
In reply to: Form To Post/Page with custom Fieldsthese plugins do NOT save the information how they are imputed into the form
I don’t know what you mean exactly.
Here is the Google Form I created
Of course this plugin does not integrate with a Google Form, only a form on WP
I want a form where I can customize the fields and have them saved into the post/page with field names and answers
I assume you mean custom fields. For any form that this plugin can capture, if you prefix a name with “meta_” like “meta_author” then it will set in the post a custom field “author”. You can also add code to the form_to_post_set_meta hook to customize what is set in custom fields. See the documentation: https://wordpress.org/plugins/form-to-post/
the form saves to pending/draft
Set a hidden post_status field to set the status, or code it in a hook.
Forum: Plugins
In reply to: [Contact Form DB] Adding Values, Return 0There shouldn’t be a conflict. But you might want to add the convert-null-to-zero code into your functions so that you don’t have 2 functions.
I suggest pull all the “trans” clauses out, then add them back in one-by-one, checking what results you get each time.