Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Michael Simpson

    (@msimpson)

    In the admin area, there is a Contact Form DB menu item when the plugin is installed and activated.

    Thread Starter jon182

    (@brody182)

    of course there is are you joking?

    I created a menu in the admin and want to display the “list” in the admin area.. but i cannot do that with the shortcode. is there a php version of the code that i can apply to the functioins.php

    Plugin Author Michael Simpson

    (@msimpson)

    I can answer your question better if you are more specific/detailed in explaining exactly what you are trying to do. For example, it is not clear which “list” you mean.

    There is a FAQ on Accessing Form Data via PHP, perhaps that will help.

    Hi Dear,
    really you are a perfect.
    I need only one think how can I change the name of table like [text-545]
    menu-684 … etc ?

    Plugin Author Michael Simpson

    (@msimpson)

    First, change your form definition in CF7 so that all future form submissions have the field names you want.

    Second, update the database to change the old form entries to the name that you want. If you purchased the editor, you can simply edit the column name.

    Otherwise, you will need to connect to PhpMyAdmin and execute a query to change the field names. For example, if you have a field named “menu-684” that you want to be called “country” in a form called “Contact form 1” you would use a query like the following:

    update wp_cf7dbplugin_submits
    set   field_name='country'
    where
           field_name='menu-684'
    and form_name='Contact form 1'
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘display in admin’ is closed to new replies.