Advertisement
eventsmanager

add column to tickets-list.php

Sep 20th, 2013
502
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. /*
  2. Add new column in the ticket list table under Booking Form at Single Events Page
  3.  
  4. Part 2 -> http://pastebin.com/LdjxXzCW
  5.  
  6. */
  7. function my_em_mod_add_ticket_column( $collumns, $EM_Event ){
  8. $collumns['available_spaces'] = __('Available Spaces','dbem');
  9. return $collumns;
  10. }
  11. add_filter('em_booking_form_tickets_cols', 'my_em_mod_add_ticket_column',10,2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement