• Resolved Blake

    (@alexanderblake)


    I have been tasked with fixing this issue on a client’s site. I have encountered it before and know to modify the form_settings.php and notifications.php files, but I don’t know which file to edit for the Web-to-Lead Feeds section.

    I know I need to add this: (but where)

    function get_columns() {
            $columns = array(
                    'name' => 'Name',
                    'subject' => 'Subject'
                    );
            return $columns;
        }
Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Blake

    (@alexanderblake)

    Has no one encountered this error? I’ve looked through every file I can think of, and I’m stuck.

    Any admin help?

    Not sure if you’re still looking for input on this, but after an hour of trial and error, I fixed this issue for the web-to-lead plugin.

    1. First, I went to this folder wp-content/plugins/gravityforms/includes/addon
    2. Second, I opened class-gf-feed-addon.php
    3. Third, I pasted this code in the class GFAddOnFeedsTable extends WP_List_Table {

      function get_columns() {
      $columns = array(
      ‘name’ => ‘Name’,
      ‘subject’ => ‘Subject’
      );
      return $columns;
      }

    Thread Starter Blake

    (@alexanderblake)

    Yes, I found it on my own a few weeks ago but forgot to post it.

    Thanks for the follow-up!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Web-to-Lead Error– function WP_List_Table::get_columns()’ is closed to new replies.