Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter markenobj

    (@markenobj)

    Hi, to display the missing columns I have changed the easy_payment_add_easy_payment_list_columns() function by adding:

    $columns['payer_email'] = _x('Email', 'column name');
    $columns['item_name'] = _x('Item name', 'column name');

    and easy_payment_render_easy_payment_list_columns() to show them:

    case 'payer_email' :
                    echo esc_attr(get_post_meta($post->ID, 'payer_email', true));
                    break;
                case 'item_name' :
                    echo esc_attr(get_post_meta($post->ID, 'item_name', true));
                    break;

    If you like, please put these small changes to your plugin so many other people can enjoy it – and I will not lose the changes on the next plugin update 🙂

    Thread Starter markenobj

    (@markenobj)

    In our panel we can see only Post ID, Name / Company, Amount, Transaction Type, Payment status and Data, more information can be found editing the transaction but not in this list.

Viewing 2 replies - 1 through 2 (of 2 total)