• I have attempted to add this plugin on a website using Gravity Forms v2.3.4 and am getting the following notice:

    Notice: An outdated add-on or custom code is attempting to access the wp_rg_form_meta table which is not valid in this version of Gravity Forms. Update your add-ons and custom code to prevent loss of form data. Further details: https://docs.gravityforms.com/database-storage-structure-reference/#changes-from-gravity-forms-2-2

    What versions of Gravity Forms does this plugin support?

Viewing 1 replies (of 1 total)
  • lxcichano

    (@lxcichano)

    @lukegc, with WP_DEBUG set to true, I get the same warning.

    As the link in the warning indicates, Gravity Forms renamed some of the tables their plugin creates in the WordPress database. rg_form_meta has been changed to gf_form_meta; however, there is a line of code in the plugin, which still refers to rg_form_meta.

    See line 31 here:
    https://plugins.trac.wordpress.org/browser/gf-add-on-autoexport-entries-to-csv/trunk/autoexport-csv-gf.php

    $forms = $wpdb->get_results( "SELECT * FROM " . $prefix . "rg_form_meta" );

    You could fix that line of code in the plugin source code on your site if you are comfortable doing so.

    It should be:

    $forms = $wpdb->get_results( "SELECT * FROM " . $prefix . "gf_form_meta" );

    In other words, just change the rg to gf in that line.

    , Lee

    • This reply was modified 7 years ago by lxcichano.
    • This reply was modified 7 years ago by lxcichano.
Viewing 1 replies (of 1 total)

The topic ‘Compatible with Gravity Forms v2.3.4?’ is closed to new replies.