Title: markenobj's Replies | WordPress.org

---

# markenobj

  [  ](https://wordpress.org/support/users/markenobj/)

 *   [Profile](https://wordpress.org/support/users/markenobj/)
 *   [Topics Started](https://wordpress.org/support/users/markenobj/topics/)
 *   [Replies Created](https://wordpress.org/support/users/markenobj/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/markenobj/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/markenobj/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/markenobj/engagements/)
 *   [Favorites](https://wordpress.org/support/users/markenobj/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy PayPal Payment] Add field in payment list](https://wordpress.org/support/topic/add-field-in-payment-list/)
 *  Thread Starter [markenobj](https://wordpress.org/support/users/markenobj/)
 * (@markenobj)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/add-field-in-payment-list/#post-7291479)
 * 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 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy PayPal Payment] Add field in payment list](https://wordpress.org/support/topic/add-field-in-payment-list/)
 *  Thread Starter [markenobj](https://wordpress.org/support/users/markenobj/)
 * (@markenobj)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/add-field-in-payment-list/#post-7291283)
 * 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)