Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author mbj-webdevelopment

    (@mbj-webdevelopment)

    Yes, we are already added all the information in payment list. please checked it and let me know if any query.

    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.

    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 🙂

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

The topic ‘Add field in payment list’ is closed to new replies.