Michael Simpson
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form DB] Import / ExportGMail? You mean Google Sheets? You might have to set the delimiter to comma during the Export.
Forum: Plugins
In reply to: [Contact Form DB] Dropdown MenusWhat page and drop down?
Forum: Plugins
In reply to: [Contact Form DB] No Data Available in TableOK, now I see I can scroll the error above, I can see there is more information.
I don’t know what ‘wp_database.one’ is and there is no “SHOW FULL COLUMNS” query in the plugin code. This
do_action('toplevel_page_CF7DBPluginSubmissions')seems like some other plugin or the theme is injecting something. Maybe that is messing things up so the the CFDB query can’t run correctly.CFDB should create and query a table called
<prefix>_cf7dbplugin_submitswhich is normallywp_cf7dbplugin_submitsbut each site in your multisite will have different prefix.Forum: Plugins
In reply to: [Contact Form DB] No Data Available in TableYou won’t see the name of any of your forms in CFDB until it captures a submission for that form. Each site in multisite has its own independent set of data. So it is possible to see it on the main site or one of the individual sites because you have made a submission there, but not see them on other sites because there have been no submissions there.
Forum: Plugins
In reply to: [Add Shortcodes Actions And Filters] use shortcode in link?You are not capturing the return value in a variable. Try this:
$current_user = wp_get_current_user(); echo( $current_user->user_login );https://codex.wordpress.org/Function_Reference/wp_get_current_user
Forum: Plugins
In reply to: [Contact Form DB] CFDB EditorIt’s a one-time pay perpetual license. Click on the payment button to see the price before purchase.
http://cfdbplugin.com/?page_id=459
Ask any questions on that website, not this one which is for the WP-hosted free plugins only.But there isn’t a simply way to limit editing of one form data to specific individuals. But you can do it as follows. The for-purchase CFDB Editor adds an edit capability to tables of your results. To limit who can edit what, you would have to put a [cfdb-datatable] short code on a page that references one form and only give access to that page for certain individuals who you want to edit that form’s results. For another form, create another page with another shortcode on that. Then you would change a security setting to hide the CFDB administration page to all those people, otherwise any of they could edit on that table.
Forum: Plugins
In reply to: [Contact Form DB] Ninja Forms supportYou can clear both of those tables to reset. The entry count in wp_cf7dbplugin_st does not matter. However I doubt that will fix the problem.
In the CFDB Options page, System tab, there is an entry where you can set a output file for error messages. Please set that to a new file that you will be able to access, try a submission again, and see if there is any output there.
Forum: Plugins
In reply to: [Contact Form DB] apparently there used to be a contact link under comments?Everything under “Contact” is the Contact Form 7 plugin.
Forum: Plugins
In reply to: [Contact Form DB] Show db values in user profilesYou would have to add some code to a CFDB hook to grab a form submission when it arrives and save data in the profile. See: http://cfdbplugin.com/?page_id=747
Forum: Plugins
In reply to: [Contact Form DB] Ninja Forms supportIt should just work. I don’t see any issue on my site. I assume you have on the CFDB Options page, Ninja form integration set to “true”. That’s the default.
Try creating a simple form with just one text field. Preview the form and submit it. On the CFDB page, does that form name appear with an entry?
Forum: Plugins
In reply to: [Contact Form DB] apparently there used to be a contact link under comments?I’m not sure that I understand your question. In your WordPress dashboard navigation, all CFDB admin pages, including the shortcode builder, are under “Contact Form DB”. “Contact” would be for Contact Form 7.
Forum: Plugins
In reply to: [Contact Form DB] search in different forms for same resultI suggest that you convert the drop-down answers from language B into the equivalent in language A so that everything in your database is in one language and therefore easier to search.
Your form plugin should allow you to set up a drop down with two values in each option. One is the display value seen by the use on the screen and the other is the value to be submitted.
Forum: Plugins
In reply to: [Contact Form DB] Showing different parts of database to different peopleThere isn’t a simple way to do this because you don’t something in each entry that ties it to that user’s login. You could write a custom filter to do this, but you would have to know PHP.
Alternatively, you could create a private post for each group and put a shortcode there that filters on the group name. Then give access to the appropriate people. But that would be 50 posts.
Forum: Plugins
In reply to: [Contact Form DB] View fields using search and drop-down listUsing [cfdb-html] you could simply create a SELECT tag
[cfdb-html form="myform" search="Name"] {{BEFORE}} <select> {{/BEFORE}} <option value="${field_name}">${field_name}</option> </select> {{AFTER}} </select> {{/AFTER}} [/cfdb-html]If you want to create a drop-down as part of a CF7 see: http://cfdbplugin.com/?page_id=1435