Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * paste in your theme functions.php
- * after adding in your functions.php, go to Events > Bookings > Recent Bookings or by clicking an specific
- * click on the Gear icon and drag&drop field "Location Name"
- */
- function my_em_bookings_table_cols_template($template, $EM_Bookings_Table){
- $template['location_name'] = 'Location Name';
- return $template;
- }
- add_action('em_bookings_table_cols_template', 'my_em_bookings_table_cols_template',10,2);
- function my_em_custom_booking_form_cols_location_name($val, $col, $EM_Booking, $EM_Bookings_Table, $csv){
- if( $col == 'location_name' ){
- $val = $EM_Booking->get_event()->get_location()->location_name;
- }
- return $val;
- }
- add_filter('em_bookings_table_rows_col','my_em_custom_booking_form_cols_location_name', 10, 5);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement